From 5b6f0327c662601251c8dccc1f02e6057d5e39d4 Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Fri, 26 Feb 2021 11:25:32 +0100 Subject: [PATCH] Settings entry: fix overflow cut-off Fixes #334, a regression from the mobile UI changes --- app/assets/stylesheets/zammad.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/zammad.scss b/app/assets/stylesheets/zammad.scss index 1a08ac30b..088eb7855 100644 --- a/app/assets/stylesheets/zammad.scss +++ b/app/assets/stylesheets/zammad.scss @@ -8864,8 +8864,11 @@ footer { .settings-entry { margin-bottom: 42px; max-width: 700px; - overflow: auto; - -webkit-overflow-scrolling: touch; + + @include phone { + overflow: auto; + -webkit-overflow-scrolling: touch; + } &--stretched { max-width: none;