60 lines
743 B
CSS
60 lines
743 B
CSS
.full-width {
|
|
width: 100%;
|
|
}
|
|
.form-container {
|
|
padding: 40px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.additional-form {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.checkbox-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 15px 0;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.time-fields {
|
|
display: flex;
|
|
gap: 15px;
|
|
}
|
|
|
|
.time-field {
|
|
flex: 1;
|
|
}
|
|
|
|
.list-item-content {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.text-content {
|
|
flex-grow: 1;
|
|
margin-right: 16px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.icon-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.right-icon {
|
|
margin-left: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.action-container {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 1em;
|
|
padding: 1.5em;
|
|
} |