diff options
| author | Pinapelz <donaldshan1@outlook.com> | 2023-09-22 23:37:01 -0700 |
|---|---|---|
| committer | Pinapelz <donaldshan1@outlook.com> | 2023-09-22 23:37:01 -0700 |
| commit | f73b603f9048d225abb22f221e00e04c84ae62be (patch) | |
| tree | 2697564d31c858aee1bbce948589a1636c36234f /src/pages | |
| parent | 50764f2a36c85c783e622e6a4f5632f68d6380f8 (diff) | |
Remove shapes background from project page
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/projects.astro | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/src/pages/projects.astro b/src/pages/projects.astro index d5f97c9..0da5cc1 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -2,7 +2,6 @@ import Layout from "../layouts/Layout.astro"; import SocialNavbar from "../components/SocialNavbar.astro"; import Card from "../components/Card.astro"; -import ShapesBackground from "../components/ShapesBackground.astro"; --- <Layout title="Projects"> @@ -97,23 +96,21 @@ import ShapesBackground from "../components/ShapesBackground.astro"; </ul> </main> <SocialNavbar /> - <ShapesBackground /> <style> - main { - margin: auto; - padding: 1rem; - max-width: 1200px; - color: white; - font-size: 20px; - line-height: 1.6; -} -.link-card-grid { - display: grid; - grid-template-columns: repeat(3, minmax(24ch, 1fr)); - gap: 2rem; - padding: 0; -} + margin: auto; + padding: 1rem; + max-width: 1200px; + color: white; + font-size: 20px; + line-height: 1.6; + } + .link-card-grid { + display: grid; + grid-template-columns: repeat(3, minmax(24ch, 1fr)); + gap: 2rem; + padding: 0; + } @media (max-width: 1020px) { .link-card-grid { display: grid; |
