fix(a11y): input borders

This commit is contained in:
2023-04-19 12:04:43 +02:00
parent 0bd83f8000
commit fffe290360
2 changed files with 4 additions and 4 deletions

View File

@@ -53,7 +53,7 @@
type="username" type="username"
id="username" id="username"
name="username" name="username"
class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border"
required required
aria-describedby="username-error" aria-describedby="username-error"
/> />
@@ -72,7 +72,7 @@
type="password" type="password"
id="password" id="password"
name="password" name="password"
class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border"
required required
aria-describedby="password-error" aria-describedby="password-error"
/> />

View File

@@ -76,7 +76,7 @@
type="text" type="text"
id="firstname" id="firstname"
name="firstname" name="firstname"
class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border"
required required
bind:value={firstname} bind:value={firstname}
aria-describedby="firstname-error" aria-describedby="firstname-error"
@@ -117,7 +117,7 @@
type="lastname" type="lastname"
id="lastname" id="lastname"
name="lastname" name="lastname"
class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400" class="py-3 px-4 block w-full border-gray-200 rounded-md text-sm focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 dark:border-gray-700 dark:text-gray-400 border"
required required
aria-describedby="lastname-error" aria-describedby="lastname-error"
bind:value={lastname} bind:value={lastname}