Skip to content

Commit ddc17cc

Browse files
committed
fix: add -webkit-backdrop-filter for better compatibility in sticky header and visual editor styles
1 parent 5b04b8b commit ddc17cc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/shared/ui/sticky-header/sticky-header.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
padding: var(--mantine-spacing-md);
88

99
backdrop-filter: blur(24px);
10+
-webkit-backdrop-filter: blur(24px);
1011

1112
@media (min-width: $mantine-breakpoint-md) {
1213
padding-left: 1.25rem;

src/widgets/dashboard/subpage-configs/subpage-config-editor/subpage-config-visual-editor.module.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
background: rgba(255, 255, 255, 0.02);
2121
border: 1px solid rgba(255, 255, 255, 0.08);
2222
backdrop-filter: blur(10px);
23+
-webkit-backdrop-filter: blur(10px);
2324
transition: all 0.3s ease;
2425
}
2526

@@ -31,6 +32,7 @@
3132
background: rgba(255, 255, 255, 0.015);
3233
border: 1px solid rgba(255, 255, 255, 0.06);
3334
backdrop-filter: blur(10px);
35+
-webkit-backdrop-filter: blur(10px);
3436
transition: all 0.3s ease;
3537
}
3638

@@ -70,6 +72,7 @@
7072
top: 0;
7173
z-index: 100;
7274
backdrop-filter: blur(12px);
75+
-webkit-backdrop-filter: blur(12px);
7376
background: rgba(22, 27, 35, 0.9);
7477
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
7578
margin: calc(var(--mantine-spacing-xl) * -1);

0 commit comments

Comments
 (0)