Skip to content

Commit

Permalink
styling: changed font of button
Browse files Browse the repository at this point in the history
  • Loading branch information
me-liu committed Oct 23, 2024
1 parent 4434bef commit 7ecef5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions app/onboarding/general/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ export default function Onboarding() {
<StyledLink href="../onboarding/preferences">
<ButtonContainer>
<ContinueButton>
<ContinueText style={{ fontFamily: 'boo' }}>
Continue
</ContinueText>
<ContinueText>Continue</ContinueText>
</ContinueButton>
</ButtonContainer>
</StyledLink>
Expand Down
4 changes: 2 additions & 2 deletions app/onboarding/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import NextImage from 'next/image';
import styled from 'styled-components';
import { BespokeSans } from '@/styles/fonts';
import COLORS from '../../styles/colors';

export const Background = styled.main`
Expand All @@ -17,7 +18,6 @@ export const Background = styled.main`

export const InlineContainer = styled.main`
width: 30%;
height: 85%;
flex-direction: column;
margin-top: 2%;
margin-bottom: 2%;
Expand Down Expand Up @@ -101,11 +101,11 @@ export const ContinueButton = styled.button`
`;

export const ContinueText = styled.text`
${BespokeSans.style}
color: white;
font-size: 14px;
padding: 10px;
text-decoration: none;
font-family: 'BespokeSans-Regular' !important;
`;

export const StyledLink = styled.a`
Expand Down

0 comments on commit 7ecef5a

Please sign in to comment.