diff --git a/changes/17265-filter-alignment b/changes/17265-filter-alignment new file mode 100644 index 0000000000..a27c775810 --- /dev/null +++ b/changes/17265-filter-alignment @@ -0,0 +1 @@ +* Fix a small alignment bug diff --git a/frontend/pages/hosts/ManageHostsPage/components/HostsFilterBlock/_styles.scss b/frontend/pages/hosts/ManageHostsPage/components/HostsFilterBlock/_styles.scss index 1df7fbc364..752858973b 100644 --- a/frontend/pages/hosts/ManageHostsPage/components/HostsFilterBlock/_styles.scss +++ b/frontend/pages/hosts/ManageHostsPage/components/HostsFilterBlock/_styles.scss @@ -15,19 +15,34 @@ // NOTE: Look more into this styling &__os_settings-dropdown, &__macsettings-dropdown { - width: 137px; - .Select-value { display: flex; align-items: center; + position: initial !important; + line-height: initial !important; &::before { position: relative; content: url(../assets/images/icon-filter-v2-black-16x16@2x.png); transform: scale(0.5); - left: -8px; - top: 4px; + top: 1px; } } + + .Select-input { + display: none !important; + } + + .Select { + box-sizing: initial; + } + + .Select-control { + height: 36px; + } + + .dropdown__select { + border: 1px solid #e2e4ea; + } } }