aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/css/mobile.css2
-rw-r--r--core/css/mobile.scss2
-rw-r--r--core/css/server.css2
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css
index 82b3424b7af..c0628ec779e 100644
--- a/core/css/mobile.css
+++ b/core/css/mobile.css
@@ -20,7 +20,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
-@media only screen and (max-width: 1024px) {
+@media only screen and (width < 1024px) {
/* position share dropdown */
#dropdown {
margin-right: 10% !important;
diff --git a/core/css/mobile.scss b/core/css/mobile.scss
index c33cf0d3886..228166f3303 100644
--- a/core/css/mobile.scss
+++ b/core/css/mobile.scss
@@ -1,6 +1,6 @@
@use 'variables';
-@media only screen and (max-width: variables.$breakpoint-mobile) {
+@media only screen and (width < variables.$breakpoint-mobile) {
/* position share dropdown */
#dropdown {
diff --git a/core/css/server.css b/core/css/server.css
index 410862502bb..5dfa8854302 100644
--- a/core/css/server.css
+++ b/core/css/server.css
@@ -4206,7 +4206,7 @@ kbd {
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
-@media only screen and (max-width: 1024px) {
+@media only screen and (width < 1024px) {
/* position share dropdown */
#dropdown {
margin-right: 10% !important;