Answers - Search Clear Button Misaligned

Description of Issue

With the release of Chrome 83, the search clear button is misaligned in the search bar.

Impact :warning:

All experiences (if you had previously overwritten the search bar’s scss add by chance added the correct align-items, this might not impact you).

Remediation :adhesive_bandage:

To address this issue, you can either

1: Upgrade to the latest relevant patch, see this post for more details.

2: Add the following styling to your answers.scss

.yxt-SearchBar, .yxt-GeoLocationFilter{
  &-button, &-clear
  {
      display: flex;
      align-items: center;
    }
}
1 Like