fix input border color

This commit is contained in:
Bnyro 2022-08-27 14:28:59 +02:00 committed by Kavin
parent 471e81f556
commit 465f74475f
No known key found for this signature in database
GPG Key ID: 49451E4482CC5BCD
2 changed files with 5 additions and 6 deletions

View File

@ -152,6 +152,11 @@ b {
@apply pl-2.5;
}
.input:focus {
@apply border-2 border-red-500 outline-none;
box-shadow: 0 0 15px rgba(239, 68, 68, var(--un-border-opacity));
}
hr {
@apply !mt-2 !mb-3 border-gray-300;
}

View File

@ -174,9 +174,3 @@ export default {
},
};
</script>
<style>
.input:focus {
@apply border-2 border-red-500;
box-shadow: 0 0 15px rgba(239, 68, 68, var(--un-border-opacity));
}
</style>