diff options
| author | 2022-11-20 14:46:39 +0100 | |
|---|---|---|
| committer | 2022-11-20 14:46:39 +0100 | |
| commit | 278e07f7bdfc1c81129a261d59311bc82461366c (patch) | |
| tree | 486e393985b7d4ef1dc650fa86fa9d49ddd5229f /p/themes/base-theme/frss.css | |
| parent | e7aa0628581a8d010561959f7b80ce7e1a3784ab (diff) | |
fix: over flowing table that destroy the layout (#4872)
Diffstat (limited to 'p/themes/base-theme/frss.css')
| -rw-r--r-- | p/themes/base-theme/frss.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 42f6c05f6..f5aaea902 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -333,9 +333,14 @@ button.as-link[disabled] { } table { + margin: 0.5rem 0; max-width: 100%; } +th, td { + padding: 0.5rem; +} + th.numeric, td.numeric { text-align: center; @@ -1280,6 +1285,7 @@ a.website:hover .favicon { padding: 0.75rem; line-height: 1.5; word-wrap: break-word; + overflow: auto; } .content.large { @@ -2132,6 +2138,14 @@ input:checked + .slide-container .properties { padding: 1rem; } + table { + font-size: 0.9rem; + } + + th, td { + padding: 0.25rem; + } + .notification { top: 0; left: 0; |
