mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -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 {
|
||||
0% {
|
||||
opacity: 0;
|
||||
backdrop-filter: blur(4px) opacity(0);
|
||||
}
|
||||
100% {
|
||||
backdrop-filter: blur(4px) opacity(1);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes v-modal-out {
|
||||
0% {
|
||||
backdrop-filter: blur(4px) opacity(1);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
backdrop-filter: blur(4px) opacity(0);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -36,7 +32,6 @@
|
|||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: var.$popup-modal-background-color;
|
||||
backdrop-filter: blur(4px) opacity(1);
|
||||
}
|
||||
|
||||
@include mixins.b(popup-parent) {
|
||||
|
|
Loading…
Reference in a new issue