Skip to content

Commit

Permalink
Merge pull request #4 from zoe-lindqvist/Typography
Browse files Browse the repository at this point in the history
Typography
  • Loading branch information
JoyceKuode authored Nov 5, 2024
2 parents c5a57cb + 91e5cd7 commit fac2642
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import GlobalStyles from './GlobalStyles'
import GlobalStyles from "./styles/GlobalStyles";
import { Typography } from "./ui/Typography";

export const App = () => {
return (
<>
<GlobalStyles />
<Typography />
</>
)
}
);
};
Empty file added src/components/About.jsx
Empty file.
Empty file added src/components/Apply.jsx
Empty file.
Empty file added src/components/Contact.jsx
Empty file.
Empty file added src/components/Dogs.jsx
Empty file.
Empty file added src/components/Footer.jsx
Empty file.
Empty file added src/components/Header.jsx
Empty file.
Empty file added src/components/Hero.jsx
Empty file.
Empty file.
File renamed without changes.
Empty file added src/ui/Button.jsx
Empty file.
Empty file added src/ui/Grid.jsx
Empty file.
31 changes: 31 additions & 0 deletions src/ui/Typography.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import styled from "styled-components";

export const StyledH1 = styled.h1`
color: #331709;
text-align: center;
font-family: Italiana;
font-size: 2.25rem;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 3.375rem */
letter-spacing: -0.02475rem;
`;

export const StyledH2 = styled.h2`
color: var(--Labels-Primary, #000);
text-align: center;
font-family: Poppins;
font-size: 1.5rem;
font-style: normal;
font-weight: 400;
`;

export const StyledBody = styled.p`
color: var(--Labels-Primary, #000);
text-align: center;
font-family: Poppins;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: normal;
`;

0 comments on commit fac2642

Please sign in to comment.