mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
32 lines
545 B
SCSS
32 lines
545 B
SCSS
@use 'ontimeStyles' as *;
|
|
|
|
//////////////////////////////////// general app elements
|
|
|
|
@mixin action-link {
|
|
color: $action-text-color;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
transition-property: color;
|
|
transition-duration: $transition-time-action;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
color: $ontime-color;
|
|
}
|
|
}
|
|
|
|
@mixin ellipsis-text {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@mixin rotate-fourty-five {
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.fourtyfive {
|
|
@include rotate-fourty-five;
|
|
}
|