squash a bunch of commits

This commit is contained in:
2022-10-30 12:03:16 -05:00
parent 09b72c1858
commit 93027e8c57
222 changed files with 6157 additions and 3201 deletions

View File

@@ -0,0 +1,30 @@
.shogi {
display: grid;
grid-template-areas:
"pageHeader board"
"browser board";
grid-template-columns: minmax(25rem, 25vw) 1fr;
grid-template-rows: max-content 1fr;
place-items: stretch;
gap: 1rem;
padding: 0.5rem;
position: relative; /* For absolute positioned children. */
background-color: var(--primary-color);
}
.shogi > ::deep .game-board {
grid-area: board;
place-self: center;
}
.shogi > ::deep .pageHeader {
grid-area: pageHeader;
}
.shogi > ::deep .game-browser {
grid-area: browser;
}
Modals {
display: none;
}