diff options
author | Parker <contact@pkrm.dev> | 2024-12-19 01:27:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-19 01:27:15 +0000 |
commit | 880280d67f8ef7593d7caad8e1bbc5dfa7c14bed (patch) | |
tree | fc931891daef93de651290f4cfe5536a3e40c528 /app/src/styles/Auth.module.css | |
parent | 3b57e4a4487f0c40e8e2b8c4d613e5cd588f5027 (diff) | |
parent | 1ae686480c084f3af897de138fc2af97f0c262d2 (diff) |
Merge pull request #4 from PacketParker/dev
Dev
Diffstat (limited to 'app/src/styles/Auth.module.css')
-rw-r--r-- | app/src/styles/Auth.module.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/src/styles/Auth.module.css b/app/src/styles/Auth.module.css index 841665a..bd8059c 100644 --- a/app/src/styles/Auth.module.css +++ b/app/src/styles/Auth.module.css @@ -8,7 +8,7 @@ body { .container { font-size: 17px; position: absolute; - max-width: 500px; + width: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); @@ -27,7 +27,8 @@ h1 { .authInput { display: block; margin: 10px auto; - width: 300px; + width: 100%; + box-sizing: border-box; border-radius: 5px; padding: 15px; font-size: 17px; @@ -62,6 +63,8 @@ button:active { visibility: visible; color: #ee6161; font-weight: 600; + word-wrap: break-word; + width: 100%; } .errorHidden { |