Skip to content

Commit

Permalink
fixup! fixup! fixup! Remove line between popover and arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
atmelmicro committed Sep 4, 2024
1 parent 93b174e commit 45f1fac
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions src/components/Popover/Popover.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,36 +51,36 @@

// Sides
.isRootAtTop {
bottom: 100%;
bottom: calc(100% + #{theme.$arrow-gap} - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtBottom {
top: 100%;
top: calc(100% + #{theme.$arrow-gap} - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtLeft {
right: 100%;
right: calc(100% + #{theme.$arrow-gap} - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtRight {
left: 100%;
left: calc(100% + #{theme.$arrow-gap} - #{theme.$arrow-safe-rendering-overlap});
}

// Arrows
.isRootAtTop > .arrow {
top: calc(100% - #{theme.$arrow-gap});
top: calc(100% - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtBottom > .arrow {
bottom: calc(100% - #{theme.$arrow-gap});
bottom: calc(100% - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtLeft > .arrow {
left: calc(100% - #{theme.$arrow-gap});
left: calc(100% - #{theme.$arrow-safe-rendering-overlap});
}

.isRootAtRight > .arrow {
right: calc(100% - #{theme.$arrow-gap});
right: calc(100% - #{theme.$arrow-safe-rendering-overlap});
}

// Side alignments: top
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popover/_theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ $box-shadow: var(--rui-Popover__box-shadow);

$arrow-safe-rendering-overlap: 1px;
$arrow-gap: 1px;
$arrow-width: calc(1rem + #{$arrow-safe-rendering-overlap + ($arrow-gap * 2)});
$arrow-width: calc(1rem + #{$arrow-safe-rendering-overlap * 2});
$arrow-height: calc($arrow-width / 2); // 1.
$arrow-corner-offset: 0.75rem;

0 comments on commit 45f1fac

Please sign in to comment.