Skip to content

Commit 85223c7

Browse files
committed
Temporary fix, always hide feedbackbutton on small sized screen
1 parent 99295eb commit 85223c7

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/web-forms/src/demo/FeedbackButton.vue

+8-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ const surveyLink = computed(() => {
2626
</div>
2727
</template>
2828

29-
30-
3129
<style lang="scss">
30+
@import 'primeflex/core/_variables.scss';
31+
3232
.feedback-button span {
3333
display: block;
3434
position: fixed;
@@ -54,4 +54,10 @@ const surveyLink = computed(() => {
5454
.feedback-button:focus-within span {
5555
right: 10px;
5656
}
57+
58+
@media screen and (max-width: #{$sm}) {
59+
.feedback-button {
60+
display: none;
61+
}
62+
}
5763
</style>

0 commit comments

Comments
 (0)