From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1741185657; bh=PTV0dyV2BfeyXA/GmhIDimmqh2N9GD6Y+5qTWYfdeac=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Transfer-Encoding:Message-ID:Date:From: Reply-To:Subject:To:Cc:In-Reply-To:References:Resent-Date: Resent-From:Resent-To:Resent-Cc:User-Agent:Content-Type: Content-Transfer-Encoding; b=Xd5+zB1BCbKkEEcm7d7p3/khEQfBabS9foc1socU0x4r6mfBlNuJiCCuT7f56dcFA KtXX/VH2y2J2lRAiEddY39Rbim3PFo9nJaJxU4hSqQCHl4HjLi9jHxQa/ovEMMI2VR mbExD9GCqODOG6mFVyBEE9WyrbOiuGS1vaoIVDmmnD5n5mpzSUEhuNtkg1d2D3+E/n c0DWyvamWOwWz6I2DuH1UKnOX+z+O0/I8o0BIyUfgvwXNr6dHd6Y1m36yXxPIx4k9k m4IKDsohrUHn5/6FLkDmur5gkD+vs7aGMNh/Jix7ungXK2jYyJiUPw358RyLX9LAlB y1Hb+tujSk0oQ== Received: from localhost.localdomain (unknown [203.217.140.198]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 3132A20B4833; Wed, 5 Mar 2025 14:40:56 +0000 (UTC) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v1 07/17] chore(responsive): adjust styling Date: Wed, 5 Mar 2025 21:40:06 +0700 Message-ID: <20250305144018.267-8-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.46.0.windows.1 In-Reply-To: <20250305144018.267-1-kiizuha@gnuweeb.org> References: <20250305144018.267-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Previously, some text sizes were too large on mobile devices. This commit adjusts the text sizes to be more appropriate for mobile devices and add object-cover on avatar UI. Signed-off-by: Muhammad Rizki --- src/lib/components/ui/avatar/avatar-image.svelte | 2 +- src/lib/components/ui/avatar/avatar.svelte | 2 +- src/lib/components/ui/input/input-password.svelte | 2 +- src/lib/components/ui/input/input.svelte | 2 +- src/routes/+page.svelte | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/components/ui/avatar/avatar-image.svelte b/src/lib/components/ui/avatar/avatar-image.svelte index 0878ef3..47e9b00 100644 --- a/src/lib/components/ui/avatar/avatar-image.svelte +++ b/src/lib/components/ui/avatar/avatar-image.svelte @@ -15,7 +15,7 @@ bind:ref {src} {alt} - class={cn("aspect-square h-full w-full", className)} + class={cn("aspect-square h-full w-full object-cover", className)} draggable={false} {...restProps} /> diff --git a/src/lib/components/ui/avatar/avatar.svelte b/src/lib/components/ui/avatar/avatar.svelte index 019894e..eaa5692 100644 --- a/src/lib/components/ui/avatar/avatar.svelte +++ b/src/lib/components/ui/avatar/avatar.svelte @@ -13,6 +13,6 @@ diff --git a/src/lib/components/ui/input/input-password.svelte b/src/lib/components/ui/input/input-password.svelte index 6e2c1ab..d218e32 100644 --- a/src/lib/components/ui/input/input-password.svelte +++ b/src/lib/components/ui/input/input-password.svelte @@ -22,7 +22,7 @@ type="button" variant="ghost" size="sm" - class="group absolute right-0 top-0 h-full !px-2 transition duration-200 hover:bg-transparent" + class="group absolute right-0 top-0 h-full !px-2 hover:bg-transparent" onclick={() => (showPassword = !showPassword)} disabled={btnDisabled} > diff --git a/src/lib/components/ui/input/input.svelte b/src/lib/components/ui/input/input.svelte index 0ea1f94..928297c 100644 --- a/src/lib/components/ui/input/input.svelte +++ b/src/lib/components/ui/input/input.svelte @@ -14,7 +14,7 @@
- GNU/Weeb Mail Login - Proceed login to manager your email account + GNU/Weeb Mail Login + Proceed login to manage your email account {#if isError() && !isCredentialInvalid()} -- Muhammad Rizki