diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-08-12 23:57:57 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-08-12 23:57:57 +0200 |
commit | cd36e1412be8e0ab08f3a331a1fb5701dc5d043a (patch) | |
tree | c0c2f994cca41f28ee733e5fdeb1d1fa5c7636fb | |
parent | 986f171167e7b21ffd3ee0c0ec6a8506f0741462 (diff) |
Simplify CSS
-rw-r--r-- | static/style.css | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index 0e88e98..ecf0041 100644 --- a/static/style.css +++ b/static/style.css @@ -2311,12 +2311,12 @@ textarea, white-space: nowrap; } -.mintage-table tr :where(th, td):first-child { - text-align: left; +.mintage-table .mintage-table-cc { + white-space: nowrap; } -.mintage-table :where(th, td) { - white-space: nowrap; +.mintage-table tr :is(th, td):not(:first-child), +.mintage-table-cc tr :is(th, td):last-child { text-align: right; } |