From 925a23b083239ae43704b13d9915022112b3fd6a Mon Sep 17 00:00:00 2001 From: looskie <50378828+Looskie@users.noreply.github.com> Date: Fri, 25 Jun 2021 21:55:58 -0400 Subject: [PATCH] Feat: Darker btn --- pages/index.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index f321801..4ea7181 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -62,7 +62,7 @@ const GlobalStyle = createGlobalStyle` ::-webkit-scrollbar { width: 10px; } - + ::-webkit-scrollbar-thumb { background: rgb(64 68 78); border-radius: 8px; @@ -158,11 +158,14 @@ const Copy = styled.button` color: #aaabaf; backdrop-filter: blur(50px); box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2); - background: rgb(0, 0, 0, 0.1); + background: #191d28; transition: background ease-in-out 0.2s; &:hover { - background: rgb(0, 0, 0, 0.4); + background: #11151f; + } + &:active { + background: #0c0d13; } `;