From 6811c16fbd05fb57d506e15ec9077fefda425632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michaela=20Br=C3=BCckner?= Date: Wed, 4 Sep 2024 10:40:26 +0200 Subject: fix for #1378 --- resources/assets/stylesheets/scss/buttons.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/assets/stylesheets/scss/buttons.scss b/resources/assets/stylesheets/scss/buttons.scss index e4197c0..acc26f6 100644 --- a/resources/assets/stylesheets/scss/buttons.scss +++ b/resources/assets/stylesheets/scss/buttons.scss @@ -1,4 +1,5 @@ @import '../mixins'; +@import "breakpoints"; @mixin button() { background: var(--color--global-background); @@ -31,6 +32,10 @@ &.disabled, &[disabled] { + @media (max-width: ($major-breakpoint-small)) { + display: none; + } + box-shadow: none; color: var(--color--font-inactive); background: var(--color--button-inactive-background); -- cgit v1.0