Fix performance drop in stacked drawer when many layers (#11412)

This commit is contained in:
Adrian Dimitrov
2022-02-03 18:03:43 +02:00
committed by GitHub
parent ab84615e85
commit 3796898a1d

View File

@@ -4,6 +4,10 @@
transition-property: transform, border-radius;
}
.container.right:not(:nth-last-child(-n + 5)) {
display: none;
}
.container.right:not(:last-of-type) .v-drawer {
overflow: hidden;
}