diff options
| author | 2023-01-30 20:30:36 +0100 | |
|---|---|---|
| committer | 2023-01-30 20:30:36 +0100 | |
| commit | 9e4b4c90722812dd6c98699513180eb90cb57bb1 (patch) | |
| tree | 439f3c6714d730d892689f5bd752c48a6a6bb2e2 | |
| parent | 4f316b2ed397bb331ef89f2cd2d8ce92a725ccba (diff) | |
fix: Thumbnails background (#5058)
* fix
* fix
| -rw-r--r-- | p/themes/base-theme/frss.css | 6 | ||||
| -rw-r--r-- | p/themes/base-theme/frss.rtl.css | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/p/themes/base-theme/frss.css b/p/themes/base-theme/frss.css index 9c3f16b1c..a546de43a 100644 --- a/p/themes/base-theme/frss.css +++ b/p/themes/base-theme/frss.css @@ -1212,10 +1212,14 @@ a.website:hover .favicon { .flux .item.thumbnail { line-height: 0; - padding: 0.75rem; + padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items); height: 80px; } +.flux .item.thumbnail .item-element { + padding: 0; +} + .flux .item.thumbnail.small { height: 40px; } diff --git a/p/themes/base-theme/frss.rtl.css b/p/themes/base-theme/frss.rtl.css index 6555c95ce..610144fcb 100644 --- a/p/themes/base-theme/frss.rtl.css +++ b/p/themes/base-theme/frss.rtl.css @@ -1212,10 +1212,14 @@ a.website:hover .favicon { .flux .item.thumbnail { line-height: 0; - padding: 0.75rem; + padding: var(--frss-padding-top-bottom) var(--frss-padding-flux-items); height: 80px; } +.flux .item.thumbnail .item-element { + padding: 0; +} + .flux .item.thumbnail.small { height: 40px; } |
