diff --git a/www/src/pages/ar/library/index.astro b/www/src/pages/ar/library/index.astro index ecee1f4..9473e13 100644 --- a/www/src/pages/ar/library/index.astro +++ b/www/src/pages/ar/library/index.astro @@ -6,6 +6,6 @@ const posts = (await getCollection('blog', ({ data }) => data.lang === 'ar' && ! const popular = posts.slice(0, 5); --- -
{posts.map((post) => )}
+
diff --git a/www/src/pages/es/library/index.astro b/www/src/pages/es/library/index.astro index a341a76..2a5d3ae 100644 --- a/www/src/pages/es/library/index.astro +++ b/www/src/pages/es/library/index.astro @@ -6,6 +6,6 @@ const posts = (await getCollection('blog', ({ data }) => data.lang === 'es' && ! const popular = posts.slice(0, 5); --- -
{posts.map((post) => )}
+
diff --git a/www/src/pages/library/index.astro b/www/src/pages/library/index.astro index 105a666..2557099 100644 --- a/www/src/pages/library/index.astro +++ b/www/src/pages/library/index.astro @@ -6,11 +6,11 @@ const posts = (await getCollection('blog', ({ data }) => data.lang === 'en' && ! const popular = posts.slice(0, 5); --- +
{posts.map((post) => )}
-
{posts.map((post) => )}
diff --git a/www/src/styles/components.css b/www/src/styles/components.css index 866f17f..ed9aaf8 100644 --- a/www/src/styles/components.css +++ b/www/src/styles/components.css @@ -59,7 +59,7 @@ .library-banner h1 { margin: 0; } .library-intro { background: var(--color-primary); color: white; padding-block: 3rem; } .library-intro h2 { color: white; } -.library-layout { align-items: start; display: grid; gap: 3rem; grid-template-columns: 240px 1fr; } +.library-layout { align-items: start; display: grid; gap: 3rem; grid-template-columns: 1fr 240px; } .library-sidebar { position: sticky; top: 1rem; } .library-sidebar label { display: block; font-weight: 700; margin-bottom: .4rem; } .library-sidebar input { border: 1px solid var(--color-border); border-radius: 4px; font: inherit; padding: .7rem; width: 100%; }