mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
24 lines
437 B
SCSS
24 lines
437 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;
|
|
}
|