diff --git a/changelog/22832.txt b/changelog/22832.txt new file mode 100644 index 0000000000..7153e7694b --- /dev/null +++ b/changelog/22832.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Fixes form field label tooltip alignment +``` \ No newline at end of file diff --git a/ui/app/styles/core/label.scss b/ui/app/styles/core/label.scss index 58e9ab7c1b..df4d72085f 100644 --- a/ui/app/styles/core/label.scss +++ b/ui/app/styles/core/label.scss @@ -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;