This commit is contained in:
Dapoolp 2025-08-17 11:52:12 +02:00
parent 1228eb0105
commit 810d74baa5
11 changed files with 220 additions and 17 deletions

View file

@ -139,4 +139,45 @@
text-align: center;
}
}
.tab.with-hint {
fieldset {
gap: .5rem;
.form-group {
flex-wrap: wrap;
gap: .25rem;
label {
flex: 1;
}
.hint {
flex: 0 0 100%;
margin: 0;
font-size: var(--font-size-14);
color: var(--color-form-hint);
}
&:hover {
.hint {
color: var(--color-form-hint-hover);
}
}
}
.form-group.setting-two-values {
display: grid;
grid-template-columns: repeat(3, 1fr);
.form-group label {
text-align: right;
}
.hint {
grid-column: 1 / -1;
}
}
}
}
}