mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
30 lines
424 B
SCSS
30 lines
424 B
SCSS
.trailing {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.linkIcon {
|
|
@include rotate-fourty-five;
|
|
}
|
|
|
|
.indicator {
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 50%;
|
|
background-color: $active-indicator;
|
|
pointer-events: none;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.clear {
|
|
opacity: 0.6;
|
|
transition: opacity $transition-time-action;
|
|
|
|
&:hover,
|
|
&:focus-visible {
|
|
opacity: 1;
|
|
}
|
|
}
|