1
0
Fork 0
tsgames/src/games/hordeseer/assets/manage-workers-modal.module...

67 lines
1.0 KiB
CSS

.modal {
max-width: 480px;
height: fit-content;
}
.loading {
color: var(--text-muted);
font-size: 14px;
text-align: center;
padding: 20px;
}
.workerForm {
display: flex;
flex-direction: column;
gap: 10px;
background: var(--bg-active);
border-radius: var(--radius);
padding: 12px;
}
.workerName {
font-weight: bold;
color: var(--accent-alt);
font-size: 14px;
}
.label {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 12px;
color: var(--text-muted);
input {
width: 100%;
}
}
.textarea {
width: 100%;
resize: vertical;
}
.checkboxLabel {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 13px;
color: var(--text-muted);
cursor: pointer;
}
.formActions {
display: flex;
flex-direction: row;
gap: 8px;
}
.saveBtn {
composes: buttonSecondary from '@common/assets/ui.module.css';
}
.deleteBtn {
composes: buttonDanger from '@common/assets/ui.module.css';
}