Fix some more improper border radii (#184)

This commit is contained in:
Evan Simkowitz 2024-07-31 13:37:20 -07:00 committed by GitHub
parent 1841669525
commit c91cae9463
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 16 deletions

View File

@ -10,7 +10,6 @@
height: 100%;
overflow: hidden;
min-height: 0;
position: relative;
border-radius: var(--block-border-radius);
.block-frame-icon {
@ -150,21 +149,9 @@
width: 100%;
height: 100%;
justify-content: space-between;
border-radius: 3px;
align-items: center;
padding-left: 7px;
&.hovered {
background: rgba(255, 255, 255, 0.2);
cursor: text;
transition: background 0.2s ease;
}
&.focused {
outline: 2px solid rgba(88, 193, 66, 0.5);
background: #181818;
}
.input-wrapper {
flex-grow: 1;
@ -278,9 +265,8 @@
border: 2px solid transparent;
pointer-events: none;
padding: 2px;
border-radius: var(--block-border-radius);
border-radius: calc(var(--block-border-radius) + 2px);
}
&.block-focused {
.block-mask {
border: 2px solid var(--accent-color);

View File

@ -66,7 +66,7 @@
}
.tile-node {
border-radius: var(--block-border-radius);
border-radius: calc(var(--block-border-radius) + 2px);
overflow: hidden;
&.dragging {