diff --git a/src/pages/projects/[route].astro b/src/pages/projects/[route].astro index 758373c..c0ab433 100644 --- a/src/pages/projects/[route].astro +++ b/src/pages/projects/[route].astro @@ -18,7 +18,14 @@ if (project == null) return
-

{project.name}

+ {project.name} +

+ {project.name} +

{project.overview}

diff --git a/src/styles/Layout.css b/src/styles/Layout.css index 2a2f99a..88eb041 100644 --- a/src/styles/Layout.css +++ b/src/styles/Layout.css @@ -30,6 +30,7 @@ svg { img { max-width: 100%; + max-height: 100%; } main { diff --git a/src/styles/Project.module.css b/src/styles/Project.module.css index 9d130e0..14d9024 100644 --- a/src/styles/Project.module.css +++ b/src/styles/Project.module.css @@ -5,6 +5,10 @@ max-width: 40rem; } +#thumb { + height: 10rem; +} + .overview { width: 100%; padding: 20px;