mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 17:03:53 +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>
51 lines
773 B
SCSS
51 lines
773 B
SCSS
.section {
|
|
color: $ui-white;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.sectionHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 2rem;
|
|
|
|
&.collapsible {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
margin-top: $section-spacing;
|
|
font-size: $inner-section-text-size;
|
|
color: $label-gray;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.description {
|
|
font-size: $inner-section-text-size;
|
|
display: block;
|
|
color: $modal-note-color;
|
|
}
|
|
|
|
.closed {
|
|
transition: rotate 300ms cubic-bezier(0.45, 1.005, 0, 1.005);
|
|
rotate: 0deg;
|
|
}
|
|
|
|
.open {
|
|
transition: rotate 300ms cubic-bezier(0.45, 1.005, 0, 1.005);
|
|
rotate: 180deg;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|