Skip to content

Commit 74d4f06

Browse files
committed
Fix heights of some icons
1 parent a7f053e commit 74d4f06

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

src/components/pages/front/SignupSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const SignupSection = () => {
6464
{perks.map(({ title, icon: Icon }, i) => (
6565
<li key={i} className="flex flex-col items-center w-32 gap-2">
6666
<Icon
67-
className="w-12 sm:w-16 text-primary"
67+
className="w-12 h-12 sm:w-16 sm:h-16 text-primary"
6868
width="1em"
6969
height="1em"
7070
/>

src/pages/404.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ const NotFound: Page = ({ pathname }) => {
2929
<div className="grid grid-cols-2 gap-2 mt-4">
3030
<LinkButton href="/" color="secondary">
3131
<HomeModernIcon
32-
className="w-4"
32+
className="w-4 h-4"
3333
width="1em"
3434
height="1em"
3535
/>
3636
Home
3737
</LinkButton>
3838
<Button onClick={() => router.back()} color="secondary">
3939
<ArrowUturnLeftIcon
40-
className="w-4"
40+
className="w-4 h-4"
4141
width="1em"
4242
height="1em"
4343
/>

src/pages/blog/index.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,11 @@ const BlogPage: Page<BlogPageProps> = ({ articles, pathname }) => {
136136
className="w-fit"
137137
>
138138
Clear Tags
139-
<TagIcon className="w-4 h-4" />
139+
<TagIcon
140+
className="w-4 h-4"
141+
width="1em"
142+
height="1em"
143+
/>
140144
</LinkButton>
141145
</motion.div>}
142146
</AnimatePresence>

0 commit comments

Comments
 (0)