From f2673d112b2b875e10cc615720985bbb32512f39 Mon Sep 17 00:00:00 2001 From: 0d0 <0d0acre@esiliati.org> Date: Mon, 24 Feb 2025 19:43:11 +0100 Subject: [PATCH] this should do it --- src/routes/+page.svelte | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index d9b8343..17e8029 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -104,7 +104,7 @@ </svg> </button> - <h1 id="title" class="mb-6 text-center text-2xl text-[#00e5ff]">🐙 Scaricatore 🐙</h1> + <h3 id="title" class="mb-6 text-center text-[#00e5ff]">🐙 Scaricatore 🐙</h3> <form class="space-y-6"> <!-- Source Selection --> <fieldset class="space-y-4"> @@ -226,10 +226,21 @@ <style> * { - font-size: 14px; font-family: 'Press Start 2P', cursive; } + @media (max-height: 1000px) { + * { + font-size: 10px; + } + } + @media (min-width: 1024px) { + * { + font-size: 12px; + } + } + + #loader { display: none; }