mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 11:37:04 +02:00
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:
parent
2172786316
commit
068a57c204
3
changelog/22832.txt
Normal file
3
changelog/22832.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
```release-note:bug
|
||||||
|
ui: Fixes form field label tooltip alignment
|
||||||
|
```
|
@ -7,9 +7,13 @@
|
|||||||
|
|
||||||
.is-label {
|
.is-label {
|
||||||
color: $grey-darkest;
|
color: $grey-darkest;
|
||||||
display: inline-block;
|
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: $font-weight-bold;
|
font-weight: $font-weight-bold;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: $spacing-xxs;
|
||||||
|
width: min-content;
|
||||||
|
min-width: 100%;
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
margin-bottom: 0.25rem;
|
margin-bottom: 0.25rem;
|
||||||
|
Loading…
Reference in New Issue
Block a user