Hide form editor preview button on mobile

Form preview doesn't work properly on mobile and the button takes
There is too much space in the header.
[MAILPOET-6054]
This commit is contained in:
Rostislav Wolny
2024-06-10 12:59:14 +02:00
committed by Aschepikov
parent a7f66dcde6
commit 2a3ea5e4f4

View File

@@ -24,3 +24,10 @@
transform: rotate(45deg);
}
}
// Hide preview button on mobile
@include respond-to(small-screen) {
.mailpoet-preview-button {
display: none;
}
}