From ed8f19723fe5a001d62a16df871e7339d5a4812b Mon Sep 17 00:00:00 2001 From: Kyle Holmberg Date: Fri, 26 Feb 2021 12:55:22 -0800 Subject: [PATCH 1/2] dont set z-index on "Show code" button --- lib/components/src/ActionBar/ActionBar.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/components/src/ActionBar/ActionBar.tsx b/lib/components/src/ActionBar/ActionBar.tsx index 93ac23669cac..7872ddd450f0 100644 --- a/lib/components/src/ActionBar/ActionBar.tsx +++ b/lib/components/src/ActionBar/ActionBar.tsx @@ -9,7 +9,6 @@ const Container = styled.div<{}>(({ theme }) => ({ maxWidth: '100%', display: 'flex', background: theme.background.content, - zIndex: 1, })); export const ActionButton = styled.button<{ disabled: boolean }>( From 86db0d1ba4cc7cb00ae59299fe7b473928b14bd5 Mon Sep 17 00:00:00 2001 From: Kyle Holmberg Date: Wed, 7 Jul 2021 17:37:39 -0700 Subject: [PATCH 2/2] keep zIndex at 0 --- 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..98551e9d5359 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: 0, })); export const ActionButton = styled.button<{ disabled: boolean }>(