aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Auth.module.css
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-15 00:30:43 -0600
committerParker <contact@pkrm.dev>2024-11-15 00:30:43 -0600
commit04cc3869c2844bb82ac6975ee218141104385c35 (patch)
tree1a4c9622606ea4e562a00f6fc022d7c802e3742d /app/src/styles/Auth.module.css
parentdbc53a555e64fdd0b848bf33b4208820b8701509 (diff)
Extra route + Much more UI
Diffstat (limited to 'app/src/styles/Auth.module.css')
-rw-r--r--app/src/styles/Auth.module.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/styles/Auth.module.css b/app/src/styles/Auth.module.css
index 7e1d3e3..ad54c5a 100644
--- a/app/src/styles/Auth.module.css
+++ b/app/src/styles/Auth.module.css
@@ -16,7 +16,6 @@ body {
h1 {
color: #ccc;
- font-size: 30px;
font-weight: 600;
border: 2px solid #606468;
padding: 10px;
@@ -24,16 +23,16 @@ h1 {
margin: 0 auto;
}
-input {
+.authInput {
display: block;
margin: 10px auto;
width: 300px;
border-radius: 5px;
padding: 15px;
+ font-size: 17px;
color: #ccc;
background-color: #3b4148;
border: none;
- font-size: 17px;
}
button {
@@ -42,10 +41,10 @@ button {
width: 100%;
border-radius: 5px;
padding: 15px;
+ font-size: 17px;
color: #ccc;
background-color: #415eac;
border: none;
- font-size: 17px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.3s ease;
}
@@ -61,6 +60,7 @@ button:active {
.errorVisible {
visibility: visible;
color: #ee6161;
+ font-weight: 600;
}
.errorHidden {