diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2023-10-07 19:58:54 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2023-10-07 19:58:54 +0200 |
| commit | 60fae015d8b5e4b0bfac8306065db07f93c4c661 (patch) | |
| tree | 6c675375492b3679ff6d781a9ae2cdcad719d53b /assets/css | |
| parent | ce0e21400e756b2e9583e0df4fc839c0eccb77e8 (diff) | |
| parent | f77e4378fe1ee69d0cf8adced1c8eef8140896ee (diff) | |
| download | invidious-60fae015d8b5e4b0bfac8306065db07f93c4c661.tar.gz invidious-60fae015d8b5e4b0bfac8306065db07f93c4c661.tar.bz2 invidious-60fae015d8b5e4b0bfac8306065db07f93c4c661.zip | |
Add support for community post page/comments (#4010)
Diffstat (limited to 'assets/css')
| -rw-r--r-- | assets/css/default.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index c31b24e5..b4053b5c 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -392,11 +392,19 @@ p.video-data { margin: 0; font-weight: bold; font-size: 80%; } * Comments & community posts */ -#comments { +.comments { max-width: 800px; margin: auto; } +/* + * We don't want the top and bottom margin on the post page. + */ +.comments.post-comments { + margin-bottom: 0; + margin-top: 0; +} + .video-iframe-wrapper { position: relative; height: 0; |
