diff options
| author | Alam Guardin <alamguardin@gmail.com> | 2024-08-06 21:53:24 -0500 |
|---|---|---|
| committer | Alam Guardin <alamguardin@gmail.com> | 2024-08-06 21:53:24 -0500 |
| commit | 698d5e74be8e56a5551709dccc02c8d8e7ebaa32 (patch) | |
| tree | 24c06d2fc5d758b14fa6d720e6ecd23d1b89ea4f /src/pages | |
| parent | 42213ae52905cd1a3b5bd4369d3d3b2b36e7eb20 (diff) | |
style: create shadow content
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 05f6222..088597a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,20 +2,24 @@ import Layout from '../layouts/Layout.astro'; import Profile from '../components/Profile.astro'; import List from '../components/List.astro'; +import Shadow from '../components/Shadow.astro' --- <Layout title="Welcome to Astro."> <main class="container"> <Profile></Profile> <List></List> + <Shadow></Shadow> </main> </Layout> <style> .container { + position: relative; margin: auto; max-width: 600px; - height: auto; width: 90%; + height: 100vh; + overflow: hidden; } </style> |
