Fix password field not being inline with password checkbox

This commit is contained in:
timvisee 2020-10-21 17:51:19 +02:00
parent 47666c153a
commit 5d1ede5f63
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172

View File

@ -53,7 +53,7 @@ function password(state) {
id="password-input" id="password-input"
class="${state.archive.password class="${state.archive.password
? '' ? ''
: 'invisible'} border rounded focus:border-blue-60 leading-normal py-1 pl-2 pr-8 h-8 dark:bg-grey-80" : 'invisible'} border rounded focus:border-blue-60 leading-normal my-1 py-1 px-2 h-8 dark:bg-grey-80"
autocomplete="off" autocomplete="off"
maxlength="${MAX_LENGTH}" maxlength="${MAX_LENGTH}"
type="password" type="password"
@ -74,7 +74,7 @@ function password(state) {
src="${assets.get('eye.svg')}" src="${assets.get('eye.svg')}"
width="22" width="22"
height="22" height="22"
class="m-auto" class="m-auto mt-2"
/> />
</button> </button>
</div> </div>