mirror of
https://github.com/penpot/penpot.git
synced 2026-02-13 07:02:58 +00:00
🐛 Fix problem with color picker positioning
This commit is contained in:
committed by
Andrés Moya
parent
651230d40f
commit
2a67008531
@@ -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
|
||||
|
||||
@@ -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%;
|
||||
|
||||
Reference in New Issue
Block a user