diff options
author | Thomas Voss <mail@thomasvoss.com> | 2025-08-01 21:24:48 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2025-08-01 21:24:48 +0200 |
commit | afe6a6c8b77a7f1ae99190ab782cdba1f5ee422d (patch) | |
tree | 75ea25561cde327a9feb8d81aa81e89dbdee54c6 /static/style.css | |
parent | 86dd0a1c532f44ae605640c31c62098d14459db4 (diff) |
Move .country-grid styling to the correct file
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/static/style.css b/static/style.css index 0834d0e..e478306 100644 --- a/static/style.css +++ b/static/style.css @@ -2147,36 +2147,15 @@ textarea, min-width: 0; } -.country-grid { - row-gap: var(--grid-spacing-vertical); -} - -.country-grid:first-of-type { - margin-top: var(--block-spacing-vertical); -} - .button-grid { display: grid; grid-template-columns: repeat( auto-fit, - minmax(min(220px, 100%), 1fr) + minmax(min(var(--button-min-width), 100%), 1fr) ); column-gap: var(--grid-spacing-horizontal); } -.country-grid a { - display: flex; - align-items: center; - padding-left: 0; -} - -.country-grid a::before { - content: attr(data-code); - font-weight: bold; - width: 2ch; - width: calc(var(--form-element-spacing-horizontal) * 2 + 2ch); -} - #nav-icon-lang a { display: flex; align-items: center; |