mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
🐛 Fix right-sidebar width overflow
This commit is contained in:
parent
5d72954611
commit
f7c4bd77be
3 changed files with 3 additions and 2 deletions
|
@ -35,7 +35,7 @@
|
|||
|
||||
.shape-row {
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
grid-template-columns: auto minmax(0, 1fr);
|
||||
gap: $s-8;
|
||||
align-items: center;
|
||||
height: $s-32;
|
||||
|
|
|
@ -63,7 +63,7 @@ $width-settings-bar-max: $sz-500;
|
|||
.right-settings-bar {
|
||||
grid-area: right-sidebar;
|
||||
display: grid;
|
||||
grid-template-rows: auto 1fr;
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
height: 100vh;
|
||||
width: $width-settings-bar;
|
||||
background-color: var(--panel-background-color);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue