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=1741185651; bh=E13vo/IQ+oJJ7aqOI+Z40rDgxGRYWTLvT3agRlOT1tU=; 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=tuj+R0vFl8Jg6jDOqxl1xQpfjyJmGn+c4yxzS4E8MydKYey60uH+RpRTx+k/0NILk mOjECLdxsioDxw5j0RR6TIvwg96GN4qJSpva6je9rkDDsBPItCxE3+rFctkrf4EDbL 56iI1IfoUGDikTZc77iRU88Xu7yeW7alBYqFnFP71qGFHToVR4DBpMBoHzCgNcifpX wQd98MX/I6vqACVKEBcLsD4xCR7/CFCfF5KqSM0ly7I/WMl8Hp/W2Naj2E80KHFjXU 9GBEw00+yCX+4uPrFpgAczeMGp2i1oWVmJ9sCBmTYlCaGSJ3aCETm7Ub1hWCG5aQgi NuQt5BnOMaeTQ== Received: from localhost.localdomain (unknown [203.217.140.198]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 10A1220B4832; Wed, 5 Mar 2025 14:40:49 +0000 (UTC) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , GNU/Weeb Mailing List Subject: [PATCH v1 03/17] chore(change-pwd): adjust change password heading styling Date: Wed, 5 Mar 2025 21:40:02 +0700 Message-ID: <20250305144018.267-4-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: Wrap heading element with div and use separator component instead of
Signed-off-by: Muhammad Rizki --- src/routes/(protected)/settings/account/+page.svelte | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/routes/(protected)/settings/account/+page.svelte b/src/routes/(protected)/settings/account/+page.svelte index 99cfb77..29ccd06 100644 --- a/src/routes/(protected)/settings/account/+page.svelte +++ b/src/routes/(protected)/settings/account/+page.svelte @@ -7,6 +7,7 @@ import InputPassword from "$components/ui/input/input-password.svelte"; import Button from "$components/ui/button/button.svelte"; import http from "$lib/hooks/http.svelte"; + import Separator from "$components/ui/separator/separator.svelte"; let { data } = $props(); @@ -49,7 +50,10 @@ ); -

Change Password


+
+

Change Password

+ +
-- Muhammad Rizki