Skip to content

Commit 8e8bb8e

Browse files
authored
chore(styles): fix Sass warnings (#6689)
## ๐Ÿ“„ Description Sass no longer allow for slash divisions. --- ## ๐Ÿ”ฎ Design review - [ ] Design review done - [x] No design review needed ## ๐Ÿ“ Checklist - โœ… My code follows the style guidelines of this project - ๐Ÿ› ๏ธ I have performed a self-review of my own code - ๐Ÿ“„ I have made corresponding changes to the documentation - โš ๏ธ My changes generate no new warnings or errors - ๐Ÿงช I have added tests that prove my fix is effective or that my feature works - โœ”๏ธ New and existing unit tests pass locally with my changes
1 parent 7fbc4a4 commit 8e8bb8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

โ€Žpackages/components/src/components/post-popovercontainer/post-popovercontainer.scssโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
$border-width-rem: 0.125rem;
139139

140140
// the actual offset when the 2px border is rotated by 45deg
141-
$offset: -(math.cos($angle-rad) * $border-width-rem) - $arrow-size / 2;
141+
$offset: -(math.cos($angle-rad) * $border-width-rem) - 0.5 * $arrow-size;
142142

143143
@include utilities.high-contrast-mode {
144144
&[dynamic-placement='top'] {

0 commit comments

Comments
ย (0)