From f3b02f8440c762659055dc268d4367fa97f142b5 Mon Sep 17 00:00:00 2001 From: Chris Benjamin Date: Wed, 5 Mar 2025 07:58:44 -0500 Subject: [PATCH] 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 --- packages/core/src/styles/scss/_gjs_layers.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/core/src/styles/scss/_gjs_layers.scss b/packages/core/src/styles/scss/_gjs_layers.scss index 69d323a2a..b3347d6a7 100644 --- a/packages/core/src/styles/scss/_gjs_layers.scss +++ b/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; }