diff options
author | 2021-05-11 10:40:04 -0600 | |
---|---|---|
committer | 2021-05-11 10:40:04 -0600 | |
commit | d2eb413a6e4d423880bb3af93b63e3f37a6f1049 (patch) | |
tree | d0ec23dec31a98b330945fd8dbb611c1a7e87aa9 /examples/portfolio | |
parent | e0fc2ca09752e9d96c47b25c451df24a01fbafcf (diff) | |
download | astro-d2eb413a6e4d423880bb3af93b63e3f37a6f1049.tar.gz astro-d2eb413a6e4d423880bb3af93b63e3f37a6f1049.tar.zst astro-d2eb413a6e4d423880bb3af93b63e3f37a6f1049.zip |
Fix portfolio example (#196)
Diffstat (limited to 'examples/portfolio')
-rw-r--r-- | examples/portfolio/public/global.scss (renamed from examples/portfolio/public/app.scss) | 0 | ||||
-rw-r--r-- | examples/portfolio/src/pages/404.astro | 8 |
2 files changed, 5 insertions, 3 deletions
diff --git a/examples/portfolio/public/app.scss b/examples/portfolio/public/global.scss index 3cac56a42..3cac56a42 100644 --- a/examples/portfolio/public/app.scss +++ b/examples/portfolio/public/global.scss diff --git a/examples/portfolio/src/pages/404.astro b/examples/portfolio/src/pages/404.astro index bcf9ff668..6929c61e9 100644 --- a/examples/portfolio/src/pages/404.astro +++ b/examples/portfolio/src/pages/404.astro @@ -1,5 +1,5 @@ --- -import NotFound from '../components/NotFound.astro'; +import MainHead from '../components/MainHead.astro'; import Footer from '../components/Footer/index.jsx'; import Nav from '../components/Nav/index.jsx'; --- @@ -10,8 +10,10 @@ import Nav from '../components/Nav/index.jsx'; </head> <body> <Nav /> - <h1>Page Not Found</h1> - <p>Not found</p> + <div class="wrapper mt4 mb4"> + <h1>Page Not Found</h1> + <p>Not found</p> + </div> <Footer /> </body> </html> |