From dbb18f050425946a77edece342bd1a8fafe7cd7e Mon Sep 17 00:00:00 2001 From: seanbeaton Date: Tue, 21 Jul 2020 00:45:17 +0200 Subject: [PATCH] style: Make continue button easier to click --- src/scripts/components/ContinueIcon.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/scripts/components/ContinueIcon.tsx b/src/scripts/components/ContinueIcon.tsx index 1a66eb05a..0a8a114b8 100644 --- a/src/scripts/components/ContinueIcon.tsx +++ b/src/scripts/components/ContinueIcon.tsx @@ -15,6 +15,7 @@ export default function ContinueIcon (props: { title: string }) { const Wrapper = styled.span` line-height: 0; padding-left: 1px; + position: relative; & path { fill: var(--font-color); @@ -29,6 +30,8 @@ const Wrapper = styled.span` const Target = styled.div` position: absolute; - width: 12px; - height: 16px; + width: 22px; + left: -5px; + height: 26px; + top: -5px; `