mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
17a7d035bf
fix: close modal with button refactor: small type improvements refactor: migrate time inputs refactor: migrate tooltips refactor: prevent component resizing
25 lines
443 B
SCSS
25 lines
443 B
SCSS
.tooltip {
|
|
font-size: calc(1rem - 3px);
|
|
background-color: $ui-white;
|
|
color: $ui-black;
|
|
padding: 0.125rem 0.5rem;
|
|
border-radius: 2px;
|
|
line-height: 1.25em;
|
|
max-width: 200px;
|
|
|
|
transform-origin: var(--transform-origin);
|
|
transition:
|
|
transform 150ms,
|
|
opacity 150ms;
|
|
|
|
&[data-starting-style],
|
|
&[data-ending-style] {
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
}
|
|
|
|
&[data-instant] {
|
|
transition-duration: 0ms;
|
|
}
|
|
}
|