mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
🐛 Remove backdrop filter to speed up editor-UI (#2268)
This commit is contained in:
parent
ad55298d1b
commit
04a043616e
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue