1
0
Fork 0
mirror of synced 2024-07-09 08:16:34 +12:00

Fix border radius rounding on hover and selection indicators in builder preview

This commit is contained in:
Andrew Kingston 2021-12-09 17:22:46 +00:00
parent eeecc762d2
commit c97852d0ff

View file

@ -24,6 +24,7 @@
class:flipped
class:line
style="top: {top}px; left: {left}px; width: {width}px; height: {height}px; --color: {color}; --zIndex: {zIndex};"
class:withText={!!text}
>
{#if text}
<div class="text" class:flipped class:line class:right={alignRight}>
@ -39,12 +40,12 @@
z-index: var(--zIndex);
border: 2px solid var(--color);
pointer-events: none;
border-top-right-radius: 4px;
border-top-left-radius: 0;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-radius: 4px;
}
.indicator.flipped {
.indicator.withText {
border-top-left-radius: 0;
}
.indicator.withText.flipped {
border-top-left-radius: 4px;
}
.indicator.line {
@ -74,8 +75,7 @@
border-radius: 4px;
}
.text.flipped {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
border-radius: 4px;
transform: translateY(0%);
top: -2px;
}