diff --git a/astro.config.ts b/astro.config.ts index d5c5b12..6e5ddc1 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -30,7 +30,4 @@ export default defineConfig({ }, }, }, - experimental: { - responsiveImages: true, - }, }); diff --git a/src/pages/cv.astro b/src/pages/cv.astro index b5350cf..42fd83c 100644 --- a/src/pages/cv.astro +++ b/src/pages/cv.astro @@ -268,7 +268,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);
-

Skills & Tools

Skills & Tools
+

Projects

    { sortedProjects.map((project) => ( -
  1. +
  2. <> diff --git a/src/styles/global.css b/src/styles/global.css index 9c28f72..5ee20b2 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -56,25 +56,3 @@ text-decoration: var(--shiki-dark-text-decoration) !important; } } - -@utility container { - margin-inline: auto; - padding-inline: 2rem; - margin-inline: auto; -} - -@media print { - body { - background: none; - color: black; - } - header, - footer, - main { - max-width: unset !important; - } - header, - footer { - display: none; - } -}