103755c13713d8a51d63c6c9594678cb4fa41e2b
custom.css
| ... | ... | @@ -282,7 +282,6 @@ h1.header-title { |
| 282 | 282 | /* ==== HEX MAP (pure CSS drilldown) ===================================== */ |
| 283 | 283 | .hexmap { |
| 284 | 284 | --hex-size: 120px; /* overall scale */ |
| 285 | - --gap: 0px; |
|
| 286 | 285 | --bg: var(--bg, #111); |
| 287 | 286 | --fg: var(--fg, #e0e0e0); |
| 288 | 287 | --accent: #9bb6ff; |
| ... | ... | @@ -298,7 +297,7 @@ h1.header-title { |
| 298 | 297 | .hexmap .board { |
| 299 | 298 | display: none; |
| 300 | 299 | margin: 0 auto 1.5rem; |
| 301 | - max-width: calc(var(--hex-size) * 5 + var(--gap) * 6); |
|
| 300 | + max-width: calc(var(--hex-size) * 5); |
|
| 302 | 301 | } |
| 303 | 302 | .hexmap .board:target { display: block; } |
| 304 | 303 | .hexmap .board.is-default { display: block; } /* shown when no hash */ |
| ... | ... | @@ -307,7 +306,6 @@ h1.header-title { |
| 307 | 306 | .hexgrid { |
| 308 | 307 | display: grid; |
| 309 | 308 | grid-template-columns: repeat(5, 1fr); |
| 310 | - gap: var(--gap); |
|
| 311 | 309 | place-items: center; |
| 312 | 310 | } |
| 313 | 311 |