fix: sidebar close anim & gap w/ utilities
Don't exclude each other when not flush to fix close overshoot not looking right Also increase sidebar height by 2 instead of 1 to fix gap
This commit is contained in:
parent
5a4dbf1300
commit
611f8de400
1 changed files with 3 additions and 3 deletions
|
|
@ -166,8 +166,8 @@ Variants {
|
||||||
panel: panels.sidebar
|
panel: panels.sidebar
|
||||||
bar: bar
|
bar: bar
|
||||||
deformAmount: 0
|
deformAmount: 0
|
||||||
height: panel.height + 1
|
height: panel.height + 2
|
||||||
exclude: [utilsBg]
|
exclude: panels.sidebar.offsetScale > 0 ? [] : [utilsBg]
|
||||||
bottomLeftRadius: panels.sidebar.visible ? 0 : radius
|
bottomLeftRadius: panels.sidebar.visible ? 0 : radius
|
||||||
|
|
||||||
Behavior on bottomLeftRadius {
|
Behavior on bottomLeftRadius {
|
||||||
|
|
@ -202,7 +202,7 @@ Variants {
|
||||||
blobGroup: blobGroup
|
blobGroup: blobGroup
|
||||||
panel: panels.utilities
|
panel: panels.utilities
|
||||||
bar: bar
|
bar: bar
|
||||||
exclude: [sidebarBg]
|
exclude: panels.sidebar.offsetScale > 0 ? [] : [sidebarBg]
|
||||||
topLeftRadius: panels.sidebar.visible ? 0 : radius
|
topLeftRadius: panels.sidebar.visible ? 0 : radius
|
||||||
|
|
||||||
Behavior on topLeftRadius {
|
Behavior on topLeftRadius {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue