diff --git a/src/components/Header.astro b/src/components/Header.astro index e93e3c3..31f670a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -24,16 +24,16 @@ const base = import.meta.env.BASE_URL;
  • CV
  • -
    -
    +
    +

    log101

    Log101

    -
    +
    diff --git a/src/components/Post.astro b/src/components/Post.astro index fc2ca98..3dc7651 100644 --- a/src/components/Post.astro +++ b/src/components/Post.astro @@ -117,7 +117,7 @@ const { Content } = await post.render(); } { fullText && ( -
    +
    ) diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 3675c41..dd22a67 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -18,7 +18,9 @@ import "../styles/main.css"; {title} -
    +
    diff --git a/src/styles/main.css b/src/styles/main.css index 6aaf3ea..7ecf89c 100644 --- a/src/styles/main.css +++ b/src/styles/main.css @@ -2,15 +2,11 @@ @tailwind utilities; :root { - --h1-desktop: 3.815rem; - --h2-desktop: 3.052rem; - --h3-desktop: 2.441rem; - --h4-desktop: 1.953rem; - --h5-desktop: 1.563rem; - --h6-desktop: 1.25rem; - --small-desktop: 0.8rem; - font-size: 20px; font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; + font-size: 18px; + @media (min-width: 768px) { + font-size: 20px; + } background-color: #f5fffa; } @@ -20,6 +16,6 @@ @layer components { .posts { - @apply flex flex-col gap-10; + @apply flex flex-col gap-10 md:gap-8; } }