Add hint css (#1059)

* Add hint css

* Move .hint css class to global
This commit is contained in:
Dapoulp 2025-08-26 14:22:40 +02:00 committed by GitHub
parent 3386a9d61d
commit aaf6c689fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 35 additions and 3 deletions

View file

@ -603,9 +603,12 @@
display: flex;
justify-content: space-between;
align-items: center;
gap: .25rem .5rem;
flex-wrap: wrap;
label {
font-size: var(--font-size-16);
font-size: var(--font-size-14);
font-weight: normal;
}
.form-fields {
@ -613,6 +616,20 @@
gap: 4px;
align-items: center;
}
&.setting-two-values {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: .25rem .5rem;
.form-group {
justify-content: end;
}
.hint {
grid-column: 1 / -1;
}
}
}
}