From 2770bfa55bb2a73f8976eda84bd1e7b7b94faec4 Mon Sep 17 00:00:00 2001 From: Eungyeol <66717787+eungyeole@users.noreply.github.com> Date: Sat, 4 Sep 2021 20:55:03 +0900 Subject: [PATCH] fix button is out of position from the safari. --- 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 089e37efc8f..5dd7d0206ed 100644 --- a/lib/components/src/ActionBar/ActionBar.tsx +++ b/lib/components/src/ActionBar/ActionBar.tsx @@ -14,6 +14,7 @@ const Container = styled.div<{}>(({ theme }) => ({ export const ActionButton = styled.button<{ disabled: boolean }>( ({ theme }) => ({ + margin: 0, border: '0 none', padding: '4px 10px', cursor: 'pointer',