Form Field Tooltip Alignment (#22832)

* fixes alignment issues with form field labels that have tooltips

* adds gap to is-label to preserve tooltip spacing

* adds changelog entry
This commit is contained in:
Jordan Reimer 2023-09-06 16:14:17 -06:00 committed by GitHub
parent 2172786316
commit 068a57c204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

3
changelog/22832.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:bug
ui: Fixes form field label tooltip alignment
```

View File

@ -7,9 +7,13 @@
.is-label {
color: $grey-darkest;
display: inline-block;
font-size: 14px;
font-weight: $font-weight-bold;
display: flex;
align-items: center;
gap: $spacing-xxs;
width: min-content;
min-width: 100%;
&:not(:last-child) {
margin-bottom: 0.25rem;