0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 07:50:43 -05:00

Merge pull request #4296 from penpot/eva-bugfing-10

🐛 Fix frontend errors
This commit is contained in:
Alejandro 2024-03-20 06:30:25 +01:00 committed by GitHub
commit abd66050bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -36,7 +36,7 @@
width: $s-272;
padding: $s-6;
max-height: calc(100vh - 3 * ($s-2 + $s-48));
overflow: scroll;
overflow: auto;
}
.dropdown-element {

View file

@ -187,15 +187,15 @@
(def ^:private corner-bottom-icon
(i/icon-xref :corner-bottom (stl/css :corner-icon)))
(def ^:private corner-bottomleft-icon
(i/icon-xref :corner-bottomleft (stl/css :corner-icon)))
(i/icon-xref :corner-bottom-left (stl/css :corner-icon)))
(def ^:private corner-bottomright-icon
(i/icon-xref :corner-bottomright (stl/css :corner-icon)))
(i/icon-xref :corner-bottom-right (stl/css :corner-icon)))
(def ^:private corner-top-icon
(i/icon-xref :corner-top (stl/css :corner-icon)))
(def ^:private corner-topleft-icon
(i/icon-xref :corner-topleft (stl/css :corner-icon)))
(i/icon-xref :corner-top-left (stl/css :corner-icon)))
(def ^:private corner-topright-icon
(i/icon-xref :corner-topright (stl/css :corner-icon)))
(i/icon-xref :corner-top-right (stl/css :corner-icon)))
(mf/defc interaction-entry
[{:keys [index shape interaction update-interaction remove-interaction]}]