From 9aa275328ee76ea8471a889e14d87089ae375baf Mon Sep 17 00:00:00 2001 From: Norbert de Langen Date: Tue, 28 Jul 2020 11:26:12 +0200 Subject: [PATCH] ADD the zIndex back for https://github.com/storybookjs/storybook/pull/11502#issuecomment-663774680 --- lib/components/src/ActionBar/ActionBar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/components/src/ActionBar/ActionBar.tsx b/lib/components/src/ActionBar/ActionBar.tsx index 7872ddd450f0..93ac23669cac 100644 --- a/lib/components/src/ActionBar/ActionBar.tsx +++ b/lib/components/src/ActionBar/ActionBar.tsx @@ -9,6 +9,7 @@ const Container = styled.div<{}>(({ theme }) => ({ maxWidth: '100%', display: 'flex', background: theme.background.content, + zIndex: 1, })); export const ActionButton = styled.button<{ disabled: boolean }>(