26 lines
439 B
SCSS
26 lines
439 B
SCSS
@import '~payload/client/scss/styles';
|
|
|
|
.tooltip {
|
|
@extend %uppercase-label;
|
|
background-color: $primary;
|
|
position: absolute;
|
|
z-index: 2;
|
|
top: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 0 rem(.4);
|
|
color: $black;
|
|
line-height: rem(.8);
|
|
|
|
span {
|
|
position: absolute;
|
|
transform: translateX(-50%);
|
|
top: rem(.7);
|
|
left: 50%;
|
|
height: 0;
|
|
width: 0;
|
|
border: 10px solid transparent;
|
|
border-top-color: $primary;
|
|
}
|
|
}
|