Skip to content

Commit 37e050b

Browse files
committed
fixed small sized sizing
1 parent bb8e388 commit 37e050b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Github } from "@lucide/astro";
33
---
44

55
<footer
6-
class="relative mt-12 px-96 sm:px-8 md:px-16 lg:px-32 xl:px-64 w-screen h-80 flex flex-col justify-center items-center border-t border-t-(--background-lighter)"
6+
class="relative mt-12 px-8 md:px-16 lg:px-16 xl:px-32 w-screen h-80 flex flex-col justify-center items-center border-t border-t-(--background-lighter)"
77
>
88
<div class="flex gap-32">
99
<div class="w-80 flex flex-col">

src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<header
2-
class="px-96 sm:px-8 md:px-16 lg:px-32 xl:px-64 w-screen h-20 flex justify-center items-center border-b border-b-(--background-lighter)"
2+
class="px-8 md:px-16 lg:px-16 xl:px-32 w-screen h-20 flex justify-center items-center border-b border-b-(--background-lighter)"
33
>
44
<div class="flex-1 flex justify-start items-center gap-2">
55
<img src="/logo.png" class="w-12 h-12" />

src/components/Project.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function getColor(language: string) {
2222
---
2323

2424
<div
25-
class="relative w-full sm:w-full md:w-[calc(50%-0.75rem)] lg:w-[calc(25%-0.75rem)] p-8 flex flex-col gap-4 bg-(--background-light) border border-(--background-lightest) rounded-lg"
25+
class="relative w-full sm:w-full xl:w-[calc(50%-0.75rem)] 2xl:w-[calc(25%-0.75rem)] p-8 flex flex-col gap-4 bg-(--background-light) border border-(--background-lightest) rounded-lg"
2626
>
2727
<div class="flex gap-2 justify-between">
2828
<div class="flex gap-2">

src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import Footer from "../components/Footer.astro";
1919
</head>
2020
<body class="w-screen min-h-screen flex flex-col gap-8 bg-(--background)">
2121
<Header />
22-
<main class="px-96 sm:px-8 md:px-16 lg:px-32 xl:px-64 flex flex-col gap-6">
22+
<main class="px-8 md:px-16 lg:px-16 xl:px-32 flex flex-col gap-6">
2323
<slot />
2424
</main>
2525
<Footer />

0 commit comments

Comments
 (0)