From 062321837392551e1e1828524b1bdcb7cd674b5b Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Wed, 4 Sep 2024 15:34:13 -0700 Subject: [PATCH] make border radius conditional in tilelayout --- frontend/layout/lib/tilelayout.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/layout/lib/tilelayout.less b/frontend/layout/lib/tilelayout.less index b0c0722b..2daff040 100644 --- a/frontend/layout/lib/tilelayout.less +++ b/frontend/layout/lib/tilelayout.less @@ -70,7 +70,7 @@ } .tile-node { - border-radius: calc(var(--block-border-radius) + 4px); + border-radius: calc(var(--block-border-radius) + 2px); overflow: hidden; width: 100%; height: 100%; @@ -80,6 +80,7 @@ } &.magnified { + border-radius: calc(var(--block-border-radius) + 4px); background-color: var(--block-bg-solid-color); z-index: var(--zindex-layout-magnified-node); }