mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
26 lines
370 B
SCSS
26 lines
370 B
SCSS
.ellipsis-menu {
|
|
@include user-select(none);
|
|
display: inline-block;
|
|
position: absolute;
|
|
|
|
&__btn {
|
|
color: $text-dark;
|
|
font-size: $medium;
|
|
font-weight: $bold;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
&__triangle {
|
|
position: absolute;
|
|
top: -22px;
|
|
z-index: 1;
|
|
|
|
&--left {
|
|
left: -218px;
|
|
}
|
|
|
|
&--right {
|
|
right: -218px;
|
|
}
|
|
}
|
|
}
|