From 040359aa933bdfd3d2119229d29c95aa5a308a86 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Tue, 22 Dec 2020 19:57:25 +0100 Subject: [PATCH] cleaned up Login component for darkmode compatibility --- src/components/Login.svelte | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Login.svelte b/src/components/Login.svelte index b3e4fc55..3fd2a127 100644 --- a/src/components/Login.svelte +++ b/src/components/Login.svelte @@ -64,17 +64,17 @@ }; -
+
-

+

{$_('application_name')}

-

+

{$_('log_in_to_your_account')}

@@ -85,7 +85,7 @@ name="email" type="email" required="" - class="border-gray-300 placeholder-gray-500 appearance-none rounded-none relative block w-full px-3 py-2 border text-gray-900 rounded-t-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm" + class="border-gray-300 placeholder-gray-500 appearance-none rounded-none relative block w-full px-3 py-2 border rounded-t-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm" placeholder={$_('email_address_or_username')} bind:value={usersUsername} />
@@ -96,7 +96,7 @@ type="password" required="" bind:value={usersPassword} - class="border-gray-300 placeholder-gray-500 appearance-none rounded-none relative block w-full px-3 py-2 border text-gray-900 rounded-b-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm" + class="border-gray-300 placeholder-gray-500 appearance-none rounded-none relative block w-full px-3 py-2 border rounded-b-md focus:outline-none focus:shadow-outline-blue focus:border-blue-300 focus:z-10 sm:text-sm" placeholder={$_('password')} />
@@ -124,7 +124,7 @@