this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #431 from cvennevik/perf-modal-backdrop-filter

(performance) Remove backdrop-filter blur and saturate effects from modals

authored by

Chee Aun and committed by
GitHub
0b4c7201 02d1339b

-5
-5
src/components/modal.css
··· 9 9 justify-content: center; 10 10 align-items: center; 11 11 background-color: var(--backdrop-color); 12 - backdrop-filter: blur(24px); 13 12 animation: appear 0.5s var(--timing-function) both; 14 13 } 15 14 #modal-container > div .sheet { ··· 19 18 #modal-container > div:has(~ div) .sheet { 20 19 transform: scale(0.975); 21 20 } 22 - 23 - #modal-container > .light { 24 - backdrop-filter: saturate(0.75); 25 - }