0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-22 14:39:45 -05:00

🐛 Fix problem with color picker positioning

This commit is contained in:
alonso.torres 2021-05-24 12:31:08 +02:00 committed by Andrés Moya
parent 651230d40f
commit 2a67008531
2 changed files with 8 additions and 2 deletions

View file

@ -31,6 +31,7 @@
- Remove interactions when the destination artboard is deleted [Taiga #1656](https://tree.taiga.io/project/penpot/issue/1656).
- Fix problem with fonts that ends with numbers [#940](https://github.com/penpot/penpot/issues/940).
- Fix problem with imported SVG on editing paths [#971](https://github.com/penpot/penpot/issues/971)
- Fix problem with color picker positioning
### :arrow_up: Deps updates

View file

@ -134,8 +134,8 @@
width: 100%;
display: grid;
grid-template-rows: 20px 1fr;
grid-template-columns: 20px 1fr;
grid-template-rows: 20px 100%;
grid-template-columns: 20px 100%;
}
.viewport {
@ -145,6 +145,11 @@
overflow: hidden;
position: relative;
svg {
widht: 100%;
height: 100%;
}
.viewport-overlays {
position: absolute;
width: 100%;