mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
64 lines
753 B
SCSS
64 lines
753 B
SCSS
.current {
|
|
background-color: $blue-1100;
|
|
}
|
|
|
|
.isEditing {
|
|
color: $blue-500;
|
|
}
|
|
|
|
.actionButton {
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.formInput {
|
|
flex: 2;
|
|
}
|
|
|
|
.headerButtons,
|
|
.actionButtons,
|
|
.createActionButtons {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.actionButtons {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.createActionButtons {
|
|
margin-left: 1rem;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.saveButton {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.containCell {
|
|
max-width: 400px;
|
|
}
|
|
|
|
.innerColumn {
|
|
margin: 0 2rem;
|
|
margin-bottom: 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1em;
|
|
}
|
|
|
|
.inlineLabels {
|
|
label {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
}
|