Update password fields styling

This commit is contained in:
Douglas Barone 2024-01-31 07:55:05 -04:00
parent 1e8cf59547
commit a2936e0c26

View File

@ -8,7 +8,7 @@
/> />
<v-text-field <v-text-field
v-model="newPassword" v-model="newPassword"
class="mt-6" class="mt-6 mono-textfield"
autocomplete="off" autocomplete="off"
:rules="[ :rules="[
() => () =>
@ -44,7 +44,7 @@
() => () =>
newPassword === passwordConfirmation || 'As senhas não coincidem.' newPassword === passwordConfirmation || 'As senhas não coincidem.'
]" ]"
class="mt-6" class="mt-6 mono-textfield"
type="password" type="password"
outlined outlined
name="passwordConfirmation" name="passwordConfirmation"
@ -113,3 +113,9 @@ export default {
} }
} }
</script> </script>
<style>
.mono-textfield input {
font-family: 'Roboto Mono', monospace !important;
}
</style>