Added updated input styling to other pages

This commit is contained in:
BordedDev 2025-03-15 15:53:24 +01:00
parent 17c9731b9f
commit 5b70bb9ea5
No known key found for this signature in database
GPG Key ID: C5F495EAE56673BF
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,5 @@
@import "shared.css";
* {
margin: 0;
box-sizing: border-box;

View File

@ -0,0 +1,15 @@
input, textarea {
&:focus {
outline: 2px solid #f05a28 !important;
}
&::placeholder {
transition: opacity 0.3s;
}
&:focus::placeholder {
opacity: 0.4;
}
}

View File

@ -1,3 +1,4 @@
@import "shared.css";
* {