updated password input style

This commit is contained in:
Danny Coates 2019-02-15 14:42:09 -08:00
parent 244fcf5e77
commit a2ede30f09
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ function password(state, emit) {
> >
<input <input
id="password-input" id="password-input"
class="w-full border-l border-t border-b rounded-l-sm ${invalid class="w-full border-l border-t border-b rounded-l-lg rounded-r-none ${invalid
? 'border-red' ? 'border-red'
: 'border-grey'} leading-loose px-2 py-1" : 'border-grey'} leading-loose px-2 py-1"
maxlength="32" maxlength="32"
@ -32,7 +32,7 @@ function password(state, emit) {
<input <input
type="submit" type="submit"
id="password-btn" id="password-btn"
class="btn rounded-r-sm ${invalid class="btn rounded-r-lg rounded-l-none ${invalid
? 'bg-red hover:bg-red focus:bg-red' ? 'bg-red hover:bg-red focus:bg-red'
: ''}" : ''}"
value="${state.translate('unlockButtonLabel')}" value="${state.translate('unlockButtonLabel')}"