🐛 Remove backdrop filter to speed up editor-UI (#2268)

This commit is contained in:
Mutasem Aldmour
2021-09-30 20:26:29 +02:00
committed by GitHub
parent ad55298d1b
commit 04a043616e

View File

@@ -12,20 +12,16 @@
@keyframes v-modal-in { @keyframes v-modal-in {
0% { 0% {
opacity: 0; opacity: 0;
backdrop-filter: blur(4px) opacity(0);
} }
100% { 100% {
backdrop-filter: blur(4px) opacity(1);
} }
} }
@keyframes v-modal-out { @keyframes v-modal-out {
0% { 0% {
backdrop-filter: blur(4px) opacity(1);
} }
100% { 100% {
opacity: 0; opacity: 0;
backdrop-filter: blur(4px) opacity(0);
} }
} }
@@ -36,7 +32,6 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
background-color: var.$popup-modal-background-color; background-color: var.$popup-modal-background-color;
backdrop-filter: blur(4px) opacity(1);
} }
@include mixins.b(popup-parent) { @include mixins.b(popup-parent) {