Skip to content

Commit

Permalink
Merge pull request #35 from freshlybreemed/new-updates
Browse files Browse the repository at this point in the history
about block
  • Loading branch information
freshlybreemed authored Apr 23, 2022
2 parents a179f63 + 9eafe9c commit 0a42ece
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ const Input = styled.input`
}
`
const Email = styled.a`
/* font-size: 1.3rem; */
font-size: 1.2rem;
line-height: 1.5;
padding-top: 1rem;
display: block;
/* display: block; */
/* color: black; */
font-weight: 700;
Expand Down Expand Up @@ -309,7 +309,7 @@ const AboutPage = () => {

<Paragraph>
<ParagraphHeader>
To business inquires shoot us an email at{" "}
For business/press inquires shoot us an email at:{" "}
<Email href="mailto:[email protected]">
[email protected]
</Email>
Expand Down
8 changes: 8 additions & 0 deletions src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ const Photos = styled.section`
-moz-column-gap: 0px;
column-count: 3;
column-gap: 10px;
@media (max-width: ${breakpoints.l}px) {
-webkit-column-count: 2;
-webkit-column-gap: 0px;
-moz-column-count: 2;
-moz-column-gap: 0px;
column-count: 2;
column-gap: 10px;
}
@media (max-width: ${breakpoints.m}px) {
-webkit-column-count: 1;
-webkit-column-gap: 0px;
Expand Down

0 comments on commit 0a42ece

Please sign in to comment.