diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2024-01-13 19:13:30 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2024-01-13 21:02:54 -0400 |
commit | 652ef50bfda628e245f7dd5021f0366f4ec55c5e (patch) | |
tree | 160be9088e5139528c2917636be0c5968432cadb | |
parent | 3c8ee4341f682edb419f9193e07f214d96209384 (diff) |
css: avoid overflow hidden on cover art container
-rw-r--r-- | src/static/site6.css | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/static/site6.css b/src/static/site6.css index 5f4ed7ad..4e761963 100644 --- a/src/static/site6.css +++ b/src/static/site6.css @@ -661,7 +661,10 @@ p .current { 0 0 12px 12px #00000080; border-radius: 0 0 4px 4px; - overflow: hidden; + background: var(--bg-black-color); + + -webkit-backdrop-filter: blur(3px); + backdrop-filter: blur(3px); } #cover-art-container:has(.image-details), @@ -691,11 +694,7 @@ p .current { padding: 6px 9px 4px 9px; margin-top: 0; margin-bottom: 0; - background: var(--bg-black-color); border-top: 1px dashed var(--dim-color); - - -webkit-backdrop-filter: blur(3px); - backdrop-filter: blur(3px); } ul.image-details li { |