mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 06:28:40 +00:00
24 lines
421 B
SCSS
24 lines
421 B
SCSS
.reveal-button .children-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: $pad-small $pad-xxsmall; // larger clickable area
|
|
|
|
svg {
|
|
path {
|
|
fill: none; // Chevron icon uses stroke color
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
.component__tooltip-wrapper__element {
|
|
color: $core-vibrant-blue-over;
|
|
}
|
|
|
|
svg {
|
|
path {
|
|
stroke: $core-vibrant-blue-over;
|
|
}
|
|
}
|
|
}
|
|
}
|