From 06da201db3f1ce8fdf04d538c6fe319e8149d150 Mon Sep 17 00:00:00 2001 From: Robin Townsend Date: Thu, 9 Jun 2022 09:49:02 -0400 Subject: [PATCH] Allow AppTiles to shrink as much as necessary --- res/css/views/rooms/_AppsDrawer.scss | 50 +++++++++++++++------------- 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/res/css/views/rooms/_AppsDrawer.scss b/res/css/views/rooms/_AppsDrawer.scss index 0665fc5019a..19a3c8efe7a 100644 --- a/res/css/views/rooms/_AppsDrawer.scss +++ b/res/css/views/rooms/_AppsDrawer.scss @@ -16,6 +16,8 @@ limitations under the License. */ $MiniAppTileHeight: 200px; +// TODO this should be 300px but that's too large +$MinWidth: 240px; .mx_AppsDrawer { margin: $container-gap-width; @@ -88,6 +90,30 @@ $MiniAppTileHeight: 200px; opacity: 0.8; } } + + .mx_AppTile { + width: 50%; + min-width: $MinWidth; + } + + &.mx_AppsDrawer_2apps .mx_AppTile { + width: 50%; + + &:nth-child(3) { + flex-grow: 1; + width: 0 !important; + min-width: $MinWidth !important; + } + } + &.mx_AppsDrawer_3apps .mx_AppTile { + width: 33%; + + &:nth-child(3) { + flex-grow: 1; + width: 0 !important; + min-width: $MinWidth !important; + } + } } .mx_AppsContainer_resizer { @@ -122,31 +148,7 @@ $MiniAppTileHeight: 200px; } } -// TODO this should be 300px but that's too large -$MinWidth: 240px; - -.mx_AppsDrawer_2apps .mx_AppTile { - width: 50%; - - &:nth-child(3) { - flex-grow: 1; - width: 0 !important; - min-width: $MinWidth !important; - } -} -.mx_AppsDrawer_3apps .mx_AppTile { - width: 33%; - - &:nth-child(3) { - flex-grow: 1; - width: 0 !important; - min-width: $MinWidth !important; - } -} - .mx_AppTile { - width: 50%; - min-width: $MinWidth; border: $container-border-width solid $widget-menu-bar-bg-color; display: flex; flex-direction: column;