mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +00:00
17a7d035bf
fix: close modal with button refactor: small type improvements refactor: migrate time inputs refactor: migrate tooltips refactor: prevent component resizing
24 lines
351 B
SCSS
24 lines
351 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;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: 0 1px 0 0 currentColor;
|
|
}
|
|
}
|