diff --git a/src/layouts/Layout.astro b/src/layouts/App.astro similarity index 85% rename from src/layouts/Layout.astro rename to src/layouts/App.astro index 0e6bdc7..12b7f8c 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/App.astro @@ -51,17 +51,15 @@ const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy';
-
- -
-
- -
-
- -
+ +
+
+
-
+
+ +
+
@@ -75,11 +73,9 @@ const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy'; } #app-wrapper { - width: 100%; - max-width: 650px; - padding: 0.5rem; - padding-bottom: 5em; - + padding: 0 0.5em 10em; + display: grid; + gap: 1em; &:has(#router-outlet #post) { #jumbotron { @@ -87,16 +83,6 @@ const appTitle = article?.title ? `${article.title} | Cozy` : 'Cozy'; } } } - - #main-content { - * { - margin: 1rem 0 0; - } - - #post-wrapper { - padding: 0 1rem; - } - }