mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 10:23:54 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
30 lines
474 B
SCSS
30 lines
474 B
SCSS
.popup {
|
|
box-sizing: border-box;
|
|
padding: 1rem 1.5rem;
|
|
|
|
color: $ui-white;
|
|
background-color: $gray-1250;
|
|
|
|
border-radius: 3px;
|
|
box-shadow: $box-shadow-l1;
|
|
border: 1px solid $gray-1000;
|
|
|
|
max-width: 90vw;
|
|
|
|
transform-origin: var(--transform-origin);
|
|
transition:
|
|
transform 150ms,
|
|
opacity 150ms;
|
|
|
|
&[data-starting-style],
|
|
&[data-ending-style] {
|
|
opacity: 0;
|
|
transform: scale(0.9);
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|