diff --git a/changes/16998-covered-done-button b/changes/16998-covered-done-button new file mode 100644 index 0000000000..92849e7ebe --- /dev/null +++ b/changes/16998-covered-done-button @@ -0,0 +1 @@ +- Fix a bug where the "Done" button on the add hosts modal for plain osquery could be covered. diff --git a/frontend/components/AddHostsModal/PlatformWrapper/_styles.scss b/frontend/components/AddHostsModal/PlatformWrapper/_styles.scss index dfc0fe2703..7182a6968b 100644 --- a/frontend/components/AddHostsModal/PlatformWrapper/_styles.scss +++ b/frontend/components/AddHostsModal/PlatformWrapper/_styles.scss @@ -2,9 +2,14 @@ .platform-wrapper { padding: 0; // different to pad sticky subnav properly - .react-tabs { - &__tab-list { - margin: 0 0 1.25rem; + + .component__tabs-wrapper { + // negate problematic sticky positioning + position: initial; + .react-tabs { + &__tab-list { + margin: 0 0 1.25rem; + } } }