Browse Source

fix: Add height CSS for Safari not showing layer icons (#6394) (#6424)

* Add height CSS for Safari not showing layer icons (#6394)

* Missed the drag icon

---------

Co-authored-by: Chris Benjamin <cbenjamin@stormseed.com>
pull/6435/head
Chris Benjamin 11 months ago
committed by GitHub
parent
commit
f3b02f8440
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      packages/core/src/styles/scss/_gjs_layers.scss

3
packages/core/src/styles/scss/_gjs_layers.scss

@ -51,6 +51,7 @@ $layerIconSize: 15px !default;
&-off {
display: flex;
width: 13px;
height: 13px;
}
&-off {
@ -69,6 +70,7 @@ $layerIconSize: 15px !default;
&-caret {
width: 15px;
height: 15px;
cursor: pointer;
box-sizing: content-box;
transform: rotate(90deg);
@ -146,6 +148,7 @@ $layerIconSize: 15px !default;
&-move {
display: flex;
width: 13px;
height: 13px;
box-sizing: content-box;
cursor: move;
}

Loading…
Cancel
Save