diff options
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 4991908e2de..039374bf726 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -605,8 +605,7 @@ kbd { * Just before the mobile breakpoint we have $breakpoint-mobile (768px) - $navigation-width * -> 468px. In that case we want 200px for the list and 268px for the content */ -$min-list-width: 200px; -$min-content-width: $breakpoint-mobile - $navigation-width - $min-list-width; +$min-content-width: $breakpoint-mobile - $navigation-width - $list-min-width; #app-content { z-index: 1000; @@ -1119,9 +1118,9 @@ $popovericon-size: 16px; max-height: calc(100vh - #{$header-height}); overflow-y: auto; overflow-x: hidden; - flex: 1 1 $min-list-width; - min-width: $min-list-width; - max-width: $min-list-width + 100px; + flex: 1 1 $list-min-width; + min-width: $list-min-width; + max-width: $list-max-width; /* Default item */ .app-content-list-item { |