Skip to content

Commit

Permalink
FEATURE: Make RightSideBar inspector resizable
Browse files Browse the repository at this point in the history
This uses some small html hacks to make RightSideBar resizable in a comparable way to LeftSideBar.
  • Loading branch information
c4ll-m3-j4ck authored Jul 15, 2024
1 parent 5d89246 commit 4caa2c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/neos-ui/src/Containers/RightSideBar/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@
right: unset;
position: relative;
background-color: var(--colors-ContrastDarkest);
direction: rtl;
resize: horizontal;
overflow: auto hidden;
}
.rightSideBar--isHidden {
width: 0;
overflow: initial;
}
.rightSideBar--isHidden > div {
display: none;
Expand All @@ -30,6 +34,7 @@
.rightSideBar__components {
background: var(--colors-ContrastDarkest);
height: 100%;
direction: ltr;
}

.rightSideBar__section {
Expand Down

0 comments on commit 4caa2c1

Please sign in to comment.