Bladeren bron

update button

AykutSarac 2 jaren geleden
bovenliggende
commit
2cfb49dab9
1 gewijzigde bestanden met toevoegingen van 8 en 1 verwijderingen
  1. 8 1
      src/containers/Home/styles.tsx

+ 8 - 1
src/containers/Home/styles.tsx

@@ -127,10 +127,17 @@ export const StyledButton = styled(Button)`
   }
 `;
 
-export const StyledSponsorButton = styled(StyledButton)<{ isBlue?: boolean }>`
+export const StyledSponsorButton = styled(Button)<{ isBlue?: boolean }>`
   background: transparent;
   border: 1px solid ${({ isBlue }) => (isBlue ? "#1F9CF0" : "#ee3d48")};
   transition: all 200ms;
+  padding: 12px 24px;
+
+  div {
+    font-family: "Roboto", sans-serif;
+    font-weight: 700;
+    font-size: 16px;
+  }
 
   svg {
     color: ${({ isBlue }) => (isBlue ? "#1F9CF0" : "#ee3d48")};