make border radius conditional in tilelayout

This commit is contained in:
Evan Simkowitz 2024-09-04 15:34:13 -07:00
parent 9cf87723dc
commit 0623218373
No known key found for this signature in database

View File

@ -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);
}