mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 06:28:40 +00:00
Merging during freeze with approval from all stakeholders, including verbal approval from @sharon-fdm Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
21 lines
404 B
SCSS
21 lines
404 B
SCSS
.component__tooltip-wrapper {
|
|
display: inline-flex;
|
|
|
|
&__element {
|
|
white-space: nowrap;
|
|
line-height: initial;
|
|
}
|
|
|
|
&__underline {
|
|
position: relative;
|
|
width: fit-content;
|
|
// compensate for bottom border and padding to maintain centering
|
|
top: 2px;
|
|
border-bottom: 1px dashed $ui-fleet-black-50;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
&__tip-text {
|
|
@include tooltip-text;
|
|
}
|
|
}
|