diff options
| author | amogusussy <83502633+amogusussy@users.noreply.github.com> | 2023-03-03 22:28:26 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-03 22:28:26 +0000 |
| commit | 03542f2f5dcf7686b8d5fd38bb0c8c0e9e4a2cb7 (patch) | |
| tree | 44d6a11e3bfeb6afaed18e4dc9fee8020df8d93f /assets | |
| parent | 0995e0447c2b54d80b55231830b847d41c19b404 (diff) | |
| download | invidious-03542f2f5dcf7686b8d5fd38bb0c8c0e9e4a2cb7.tar.gz invidious-03542f2f5dcf7686b8d5fd38bb0c8c0e9e4a2cb7.tar.bz2 invidious-03542f2f5dcf7686b8d5fd38bb0c8c0e9e4a2cb7.zip | |
Fix empty description boxes.
If a video has no description, (without this commit) the description box will still take up 8.3em, even if there's no content in it.
This fixes that issue.
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/css/default.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index 3deaebe1..24910610 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -515,7 +515,7 @@ hr { #descexpansionbutton ~ div { overflow: hidden; - height: 8.3em; + max-height: 8.3em; } #descexpansionbutton:checked ~ div { |
