From 3485bfbc5cb22fe2890ef1fae12e244b79bf05aa Mon Sep 17 00:00:00 2001 From: Whymarrh Whitby Date: Mon, 18 May 2020 16:22:42 -0230 Subject: [PATCH] Sticky position the tabs at the top (#8609) --- ui/app/components/ui/tabs/index.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/app/components/ui/tabs/index.scss b/ui/app/components/ui/tabs/index.scss index 4aa1b5df9..b27fee443 100644 --- a/ui/app/components/ui/tabs/index.scss +++ b/ui/app/components/ui/tabs/index.scss @@ -5,5 +5,10 @@ display: flex; justify-content: flex-start; border-bottom: 1px solid $geyser; + background-color: $white; + + position: sticky; + top: 0; + z-index: 1; } }