Skip to content

Commit

Permalink
feat(website): make /blog more mobile friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
Khenziii committed Oct 26, 2024
1 parent 334952d commit 3da01ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/organisms/posts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const Posts = () => {
gap={20}
>
<Flex direction="column" align="flex-start" fullWidth>
<Header>Filter</Header>
<Header variant="secondary" fontSize={mobile ? 1.5 : 2}>Filter</Header>
<Paragraph fontSize={mobile ? 1.5 : 1.75}>Click the tags to filter posts!</Paragraph>
<Paragraph fontSize={mobile ? 1.25 : 1.5}><i>* Any post with at least one of the selected tags will show up.</i></Paragraph>

Expand Down Expand Up @@ -127,13 +127,13 @@ export const Posts = () => {
justify={"center"}
>
<Paragraph
fontSize={2}
fontSize={mobile ? 1.75 : 2}
styles={mobile
? {}
: {
whiteSpace: "nowrap",
textOverflow: "ellipsis",
overflow: "hidden",
textOverflow: "ellipsis",
}
}
>
Expand Down

0 comments on commit 3da01ba

Please sign in to comment.