From 3f0206ba951bb73030ef78f075ddcf27a2608948 Mon Sep 17 00:00:00 2001 From: sirlilpanda Date: Tue, 28 Jul 2026 23:04:52 +1200 Subject: [PATCH] fixed mobile view --- src/pages/pictures/index.astro | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/pages/pictures/index.astro b/src/pages/pictures/index.astro index 561ee18..ab4697d 100644 --- a/src/pages/pictures/index.astro +++ b/src/pages/pictures/index.astro @@ -84,12 +84,25 @@ const albums = await getCollection('album'); } .album-text p { - color: black; + color: rgb(0, 0, 0); + } + + @media (max-width: 720px) { + + .album-text { + padding-right: 1em; + } + + .album-text h1 { + font-size: 1.4em; + } + + .album-text p { + font-size: 0.8em; + } + } - - - \ No newline at end of file