Skip to content

Commit

Permalink
Flexbox-ify remaining grid layout
Browse files Browse the repository at this point in the history
  • Loading branch information
matze committed Jan 14, 2025
1 parent 10c4c1c commit 8fb7d72
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions src/themes/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -215,19 +215,15 @@ a, a:visited, a:hover {
}

.container {
display: grid;
grid-template-columns: 4fr 1fr;
grid-template-rows: 1fr;
grid-gap: 2em;
display: flex;
flex-direction: row;
gap: 32px;
height: 100%;
align-items: stretch;
justify-items: stretch;
}

.content {
grid-area: content;
grid-column: 1/2;
grid-row: 1/2;
display: flex;
flex: 1;
}

.content > textarea {
Expand All @@ -250,6 +246,7 @@ a, a:visited, a:hover {
display: flex;
flex-direction: column;
gap: 32px;
width: 256px;
}

.controls-group {
Expand Down

0 comments on commit 8fb7d72

Please sign in to comment.