mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 07:58:31 +00:00
18 lines
355 B
SCSS
18 lines
355 B
SCSS
.back-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: $pad-small $pad-xxsmall; // larger clickable area
|
|
border-radius: 3px; // Visible while tabbing;
|
|
gap: $pad-xsmall;
|
|
|
|
&:hover {
|
|
color: $core-vibrant-blue-over;
|
|
text-decoration: underline;
|
|
|
|
svg {
|
|
path {
|
|
stroke: $core-vibrant-blue-over;
|
|
}
|
|
}
|
|
}
|
|
}
|