FIX: Adjust arrow placement

This commit is contained in:
Jordan Vidrine 2023-10-20 08:39:13 -05:00
parent 373b2ca362
commit d9ecfff7ba
1 changed files with 4 additions and 4 deletions

View File

@ -64,28 +64,28 @@
&[data-placement^="top"] {
.arrow {
bottom: -9px;
bottom: -11px;
rotate: 180deg;
}
}
&[data-placement^="bottom"] {
.arrow {
top: -9px;
top: -11px;
}
}
&[data-placement^="right"] {
.arrow {
rotate: -90deg;
left: -9px;
left: -11px;
}
}
&[data-placement^="left"] {
.arrow {
rotate: 90deg;
right: -9px;
right: -11px;
}
}
}