Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Allow AppTiles to shrink as much as necessary #8805

Merged
merged 1 commit into from
Jun 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 26 additions & 24 deletions res/css/views/rooms/_AppsDrawer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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;
Expand Down