Skip to content

Commit

Permalink
Older browser support
Browse files Browse the repository at this point in the history
  • Loading branch information
MMP0 committed Feb 22, 2024
1 parent b6ddf17 commit 2b01223
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions js/gallery/shared/Gallery.svelte
Expand Up @@ -347,11 +347,21 @@
border-radius: calc(var(--block-radius) - var(--block-border-width));
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
background: var(--background-fill-primary);
background: color-mix(in srgb, var(--background-fill-primary) 90%, transparent);
height: var(--size-full);
}
.preview::before {
content: "";
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
z-index: var(--layer-below);
background: var(--background-fill-primary);
opacity: 0.9;
}
.fixed-height {
min-height: var(--size-80);
max-height: 55vh;
Expand Down

0 comments on commit 2b01223

Please sign in to comment.