mirror of
https://github.com/penpot/penpot.git
synced 2025-08-04 09:38:23 +02:00
✨ Selection area on rules
This commit is contained in:
parent
5cac5eb26b
commit
1dee767762
10 changed files with 148 additions and 54 deletions
|
@ -21,9 +21,10 @@ $height-palette-max: 80px;
|
|||
user-select: none;
|
||||
|
||||
display: grid;
|
||||
grid-template-areas: "header header header header"
|
||||
"toolbar left-sidebar viewport right-sidebar"
|
||||
"toolbar left-sidebar color-palette right-sidebar";
|
||||
grid-template-areas:
|
||||
"header header header header"
|
||||
"toolbar left-sidebar viewport right-sidebar"
|
||||
"toolbar left-sidebar color-palette right-sidebar";
|
||||
|
||||
grid-template-rows: auto 1fr auto;
|
||||
grid-template-columns: auto auto 1fr auto;
|
||||
|
@ -48,7 +49,7 @@ $height-palette-max: 80px;
|
|||
.settings-bar.settings-bar-right {
|
||||
min-width: $width-settings-bar;
|
||||
max-width: 500px;
|
||||
width: var(--width, $width-settings-bar);
|
||||
width: $width-settings-bar;
|
||||
grid-area: right-sidebar;
|
||||
}
|
||||
|
||||
|
@ -68,7 +69,6 @@ $height-palette-max: 80px;
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
.workspace-context-menu {
|
||||
background-color: $color-white;
|
||||
border-radius: $br-small;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue