feat: improve login and register ux #1104

Merged
dpschen merged 23 commits from feature/login-improvements into main 2022-02-05 17:22:43 +00:00
4 changed files with 9 additions and 17 deletions
Showing only changes of commit 8397608fef - Show all commits

View File

@ -3,4 +3,5 @@
@import "list";
@import "task";
@import "tasks";
@import "namespaces";
@import "namespaces";
@import 'password-field-toggle';

View File

@ -0,0 +1,7 @@
.password-field-type-toggle {
position: absolute;
color: var(--grey-400);
top: 50%;
right: 1rem;
transform: translateY(-50%);
}

View File

@ -275,11 +275,4 @@ export default {
margin-bottom: 0;
}
}
.password-field-type-toggle {
position: absolute;
top: .5rem;
right: 1rem;
color: var(--grey-400);
}
</style>

View File

@ -162,12 +162,3 @@ async function submit() {
}
}
</script>
<style scoped>
.password-field-type-toggle {
position: absolute;
top: .5rem;
right: 1rem;
color: var(--grey-400);
}
</style>