🐛 Fix button spacing on delete account modal

This commit is contained in:
Eva 2023-02-01 13:37:06 +01:00
parent 575aec209c
commit 82d6ba790c
2 changed files with 5 additions and 1 deletions

View file

@ -5,6 +5,8 @@
### :bug: Bugs fixed ### :bug: Bugs fixed
- Fix components groups items show the component name in list mode [Taiga #4770](https://tree.taiga.io/project/penpot/issue/4770) - Fix components groups items show the component name in list mode [Taiga #4770](https://tree.taiga.io/project/penpot/issue/4770)
- Fix typing CMD+Z on MacOS turns the cursor into a Zoom cursor [Taiga #4778](https://tree.taiga.io/project/penpot/issue/4778) - Fix typing CMD+Z on MacOS turns the cursor into a Zoom cursor [Taiga #4778](https://tree.taiga.io/project/penpot/issue/4778)
- Fix white space on small screens [Taiga #4774](https://tree.taiga.io/project/penpot/issue/4774)
- Fix button spacing on delete acount modal [Taiga #4762](https://tree.taiga.io/project/penpot/issue/4762)
## 1.17.0 ## 1.17.0

View file

@ -17,7 +17,7 @@ $height-palette-max: 80px;
#workspace { #workspace {
width: 100vw; width: 100vw;
height: 100vh; height: 100%;
user-select: none; user-select: none;
background-color: $color-canvas; background-color: $color-canvas;
display: grid; display: grid;
@ -37,6 +37,8 @@ $height-palette-max: 80px;
.left-toolbar { .left-toolbar {
grid-area: toolbar; grid-area: toolbar;
width: $width-left-toolbar; width: $width-left-toolbar;
overflow-y: scroll;
overflow-x: hidden;
} }
.settings-bar.settings-bar-left { .settings-bar.settings-bar-left {