Skip to content

Commit 7b65130

Browse files
committed
feat: properties panel animate in and shrink rundown view
1 parent 15d77e8 commit 7b65130

File tree

3 files changed

+248
-227
lines changed

3 files changed

+248
-227
lines changed

packages/webui/src/client/styles/propertiesPanel.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414
width: calc(#{$notification-center-width} + 4.6875rem);
1515
z-index: 292;
1616

17+
transform: translateX(100%);
18+
transition: transform 0.2s ease-out;
19+
20+
// Add a class that will be applied when the component mounts
21+
&.is-mounted {
22+
transform: translateX(0%);
23+
}
24+
1725
&::before {
1826
content: ' ';
1927
display: block;

0 commit comments

Comments
 (0)