d7fb7b7a7b
Build & Deploy / Build & Push Docker Image (push) Failing after 47s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / API Unit Tests (push) Failing after 5m4s
Test / Marketplace Unit Tests (push) Failing after 4m55s
Test / Admin Unit Tests (push) Successful in 9m37s
Test / Dashboard Unit Tests (push) Successful in 9m37s
Test / API Integration Tests (push) Successful in 9m54s
48 lines
749 B
CSS
48 lines
749 B
CSS
.field {
|
|
display: grid;
|
|
gap: var(--space-2);
|
|
}
|
|
.label {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
gap: var(--space-2);
|
|
font-weight: 700;
|
|
}
|
|
.required {
|
|
color: var(--status-error-text);
|
|
}
|
|
.optional {
|
|
color: var(--text-secondary);
|
|
font-size: var(--type-caption-size);
|
|
font-weight: 500;
|
|
}
|
|
.help,
|
|
.error {
|
|
margin: 0;
|
|
font-size: var(--type-label-size);
|
|
}
|
|
.help {
|
|
color: var(--text-secondary);
|
|
}
|
|
.error {
|
|
color: var(--status-error-text);
|
|
font-weight: 650;
|
|
}
|
|
.invalid .label {
|
|
color: var(--status-error-text);
|
|
}
|
|
.fieldset {
|
|
display: grid;
|
|
gap: var(--space-4);
|
|
min-inline-size: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
.legend {
|
|
margin-block-end: var(--space-3);
|
|
padding: 0;
|
|
font-weight: 750;
|
|
}
|