mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 09:53:48 +00:00
4d419c0877
- italic and bold for rundown metadata entries - allow deleting groups - make groups in order - correct style for milestones - open playing groups - style tweaks
25 lines
377 B
SCSS
25 lines
377 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;
|
|
text-decoration: none;
|
|
|
|
&.inline {
|
|
display: inline-flex;
|
|
}
|
|
|
|
&:hover {
|
|
color: $ontime-color;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: 0 1px 0 0 currentColor;
|
|
}
|
|
}
|