Added additional container to scenes component to prevent gaps between grid tiles.

This commit is contained in:
2024-08-04 23:50:26 +02:00
parent 6cfe5e6dcf
commit 49e528ebf9
2 changed files with 27 additions and 19 deletions

View File

@@ -60,6 +60,7 @@ const stash = pageContext.pageProps.stash;
.stash {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.header {
@@ -115,6 +116,9 @@ const stash = pageContext.pageProps.stash;
}
.content {
display: flex;
flex-direction: column;
flex-grow: 1;
overflow-y: auto;
}