mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
🐛 Remove backdrop filter to speed up editor-UI (#2268)
This commit is contained in:
@@ -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) {
|
||||||
|
|||||||
Reference in New Issue
Block a user