diff options
| author | Samantaz Fox <coding@samantaz.fr> | 2021-06-25 20:47:15 +0200 |
|---|---|---|
| committer | Samantaz Fox <coding@samantaz.fr> | 2021-06-25 20:47:15 +0200 |
| commit | cfcb64c5164816e27496366e0f6fb489dfaa6932 (patch) | |
| tree | bc8568978e767a4a43a086c0dc29d7e612a23caf /assets/css/default.css | |
| parent | eecfc155b8dc7653892363da2e97519906367795 (diff) | |
| download | invidious-cfcb64c5164816e27496366e0f6fb489dfaa6932.tar.gz invidious-cfcb64c5164816e27496366e0f6fb489dfaa6932.tar.bz2 invidious-cfcb64c5164816e27496366e0f6fb489dfaa6932.zip | |
Fix layout of video 'card' items
Previous changes broke alignment of text and icons
Diffstat (limited to 'assets/css/default.css')
| -rw-r--r-- | assets/css/default.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/assets/css/default.css b/assets/css/default.css index 1df63412..06a2f07f 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -282,6 +282,21 @@ input[type="search"]::-webkit-search-cancel-button { } } + +/* + * Video "cards" (results/playlist/channel videos) + */ + +.video-card-row { margin: 15px 0; } + +.flexible { display: flex; } +.flex-left { flex: 1 1 100%; flex-wrap: wrap; } +.flex-right { flex: 1 0 max-content; flex-wrap: nowrap; } + +p.channel-name { margin: 0; } +p.video-data { margin: 0; font-weight: bold; font-size: 80%; } + + /* * Footer */ |
