diff options
author | metamuffin <metamuffin@disroot.org> | 2024-05-12 11:46:16 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-05-12 11:46:16 +0200 |
commit | cfaae9067c151d8db49b0fcbcaff04bc31176bd2 (patch) | |
tree | 4b2727167d58f58c06384b9302404b1d2f7d54e8 /web | |
parent | bf0e9de8eb801ef58a3820b663d30bb55762970e (diff) | |
download | jellything-cfaae9067c151d8db49b0fcbcaff04bc31176bd2.tar jellything-cfaae9067c151d8db49b0fcbcaff04bc31176bd2.tar.bz2 jellything-cfaae9067c151d8db49b0fcbcaff04bc31176bd2.tar.zst |
mostly ignore errors when importing
Diffstat (limited to 'web')
-rw-r--r-- | web/style/layout.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web/style/layout.css b/web/style/layout.css index b18b42e..fb3da7c 100644 --- a/web/style/layout.css +++ b/web/style/layout.css @@ -74,18 +74,18 @@ section.message { border-radius: 8px; } .error { - padding: 1em; color: var(--c-error); font-family: monospace; } .warn { - padding: 1em; color: var(--c-warn); } .success { - padding: 1em; color: var(--c-success); } +.message p { + padding: 1em; +} footer { padding: 0.1em; @@ -158,7 +158,7 @@ summary h3 { width: max(10em, 40%); } -td, -th { +table.border td, +table.border th { border: 1px solid gray; } |