From 28ab9876b9fc62fb49b42a23c0802b5d0b2b5edb Mon Sep 17 00:00:00 2001 From: Arthur Ariza <37642667+arthurariza@users.noreply.github.com> Date: Tue, 14 Jun 2022 01:04:19 -0300 Subject: [PATCH] Fixing border rgba values for Modal page Borders are missing a zero on the rgba values on the Modal page. --- pages/modal/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/modal/index.tsx b/pages/modal/index.tsx index e5c0ca8..80e4243 100644 --- a/pages/modal/index.tsx +++ b/pages/modal/index.tsx @@ -48,7 +48,7 @@ const Details: React.FC<{}> = () => { css={` .modal { /* Border */ - border: 1px solid rgba(0, 0, 0.3); + border: 1px solid rgba(0, 0, 0, 0.3); border-radius: 4px; } @@ -56,7 +56,7 @@ const Details: React.FC<{}> = () => { display: flex; justify-content: space-between; /* Border */ - border-bottom: 1px solid rgba(0, 0, 0.3); + border-bottom: 1px solid rgba(0, 0, 0, 0.3); } .modal__footer { @@ -64,7 +64,7 @@ const Details: React.FC<{}> = () => { /* Push the buttons to the right */ justify-content: flex-end; /* Border */ - border-top: 1px solid rgba(0, 0, 0.3); + border-top: 1px solid rgba(0, 0, 0, 0.3); } `} >