diff options
| author | Fuwn <[email protected]> | 2026-03-01 15:50:17 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-03-01 15:50:45 -0800 |
| commit | 87693d8b99fcbe9a0d64af51f1c786dc62dffd4a (patch) | |
| tree | 65ae6f17ce98af76de782ba7fb5ff3466861a618 /static/styles/risotto/layout.css | |
| parent | chore(biome): enable formatting for sample media json (diff) | |
| download | due.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.tar.xz due.moe-87693d8b99fcbe9a0d64af51f1c786dc62dffd4a.zip | |
chore(biome): enable css formatting
Diffstat (limited to 'static/styles/risotto/layout.css')
| -rw-r--r-- | static/styles/risotto/layout.css | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/static/styles/risotto/layout.css b/static/styles/risotto/layout.css index f26b4cc9..78423b40 100644 --- a/static/styles/risotto/layout.css +++ b/static/styles/risotto/layout.css @@ -5,10 +5,10 @@ margin: 1rem auto; display: grid; grid-template-areas: - 'header' - 'body' - 'aside' - 'footer'; + "header" + "body" + "aside" + "footer"; grid-template-columns: minmax(0, 1fr); /* https://css-tricks.com/preventing-a-grid-blowout/ */ grid-row-gap: 2rem; } @@ -16,9 +16,9 @@ @media (min-width: 45rem) { .page { grid-template-areas: - 'header header' - 'body aside' - 'footer footer'; + "header header" + "body aside" + "footer footer"; grid-template-columns: minmax(0, 1fr) 15rem; grid-column-gap: 2rem; } |