mirror of
https://github.com/fleetdm/fleet
synced 2026-05-15 21:18:29 +00:00
26 lines
537 B
SCSS
26 lines
537 B
SCSS
.custom-link {
|
|
// Changing display will break multiline links
|
|
&:not(.custom-link--multiline) {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: $pad-xsmall;
|
|
}
|
|
|
|
&__no-wrap {
|
|
white-space: nowrap;
|
|
.icon {
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
|
|
// Variants
|
|
&--tooltip-link,
|
|
&--banner-link,
|
|
&--flash-messsage-link {
|
|
color: inherit; // Overrides fleet blue link color with parent color
|
|
}
|
|
|
|
&--tooltip-link {
|
|
font-size: inherit; // Overrides link default font size with parent tooltip font size
|
|
}
|
|
}
|