mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
19 lines
274 B
SCSS
19 lines
274 B
SCSS
.link {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
|
|
color: $blue-500;
|
|
transition-property: color;
|
|
transition-duration: $transition-time-action;
|
|
width: fit-content;
|
|
|
|
&.inline {
|
|
display: inline-flex;
|
|
}
|
|
|
|
&:hover {
|
|
color: $ontime-color;
|
|
}
|
|
}
|