mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 09:53:48 +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>
62 lines
690 B
SCSS
62 lines
690 B
SCSS
.current {
|
|
background-color: $blue-1100;
|
|
}
|
|
|
|
.isEditing {
|
|
color: $blue-500;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.formInput {
|
|
flex: 2;
|
|
}
|
|
|
|
.saveButton {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.containCell {
|
|
max-width: 50%;
|
|
}
|
|
|
|
.sortableHeader {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
}
|
|
|
|
.fullWidth {
|
|
width: 100%;
|
|
}
|
|
|
|
.innerColumn {
|
|
margin: 0 2rem;
|
|
margin-bottom: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
}
|
|
|
|
.inlineLabels {
|
|
label {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
}
|
|
|
|
.warningInfo {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.empty {
|
|
height: 300px;
|
|
position: relative;
|
|
}
|