From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on 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_BLOCKED, URIBL_DBL_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=1695548751; bh=/PkW1oz4vOydNzg1WU5pqSGhluPPYy9JS8hOB7Q1eGc=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DBpXUBLIdqzlq/+S8PY6Bt7p4CIofEKmFD/7wYVWjGtgspq8vmrjrUdD2FvBKoEeF M2kzUbwYrt/GaV/KtAHQlfh+6vg5ECk0d+Uu+rQMXHt1R6SWFzvT/nRnHc61ijeZmT eLpcH3xMLGIIDtmJ3PgOxXDCvWJ36n/oPM2fhQbO6Vg/zDSsWP2aCMd3BZH3mnQjMq T9UMKzfXCPs82vBYaWuD5XkcIwyvZpkQPvNV7hrlgltMx3lmVZrfCoBXKHHMxCmc7g B7LQAglDJ+XiZ7WV/TaagFhMI9/x1Rg0l0raZttsdakHJgjkP/ygZZJGcMFJtFRCFX CyozGi5z5qIKQ== Received: from localhost.localdomain (unknown [101.128.125.146]) by gnuweeb.org (Postfix) with ESMTPSA id D9E7024B706; Sun, 24 Sep 2023 16:45:49 +0700 (WIB) From: Muhammad Rizki To: Ammar Faizi Cc: Muhammad Rizki , Alviro Iskandar Setiawan , Arthur Lapz , Memet Zx , GNU/Weeb Mailing List Subject: [PATCH v3 01/11] style: remove extra newline at end of file Date: Sun, 24 Sep 2023 16:45:22 +0700 Message-Id: <20230924094532.1662-2-kiizuha@gnuweeb.org> X-Mailer: git-send-email 2.34.1.windows.1 In-Reply-To: <20230924094532.1662-1-kiizuha@gnuweeb.org> References: <20230924094532.1662-1-kiizuha@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This commit removes an extra newline at the end of the file, this commit ensuring there's only one newline character at EOF. Signed-off-by: Muhammad Rizki --- style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/style.css b/style.css index a90f074..b5c61c9 100644 --- a/style.css +++ b/style.css @@ -1,4 +1,3 @@ @tailwind base; @tailwind components; @tailwind utilities; - -- Muhammad Rizki