From c8cc59aacad348494bcba1c462f66f8a21fc92c8 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Wed, 21 Feb 2024 13:37:01 -0500 Subject: [PATCH] [S] Adjust input visibility --- AquaNet/src/app.sass | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/AquaNet/src/app.sass b/AquaNet/src/app.sass index 0db7622c..9e7178d7 100644 --- a/AquaNet/src/app.sass +++ b/AquaNet/src/app.sass @@ -25,7 +25,7 @@ body a font-weight: 500 - color: $c-darker + color: $c-main text-decoration: inherit a:hover @@ -59,7 +59,7 @@ button font-size: 1em font-weight: 500 font-family: inherit - background-color: #1a1a1a + background-color: rgba(white, 0.08) opacity: 0.9 cursor: pointer transition: all 0.25s @@ -95,14 +95,18 @@ input font-size: 1em font-weight: 500 font-family: inherit - background-color: #1a1a1a + background-color: rgba(white, 0.08) transition: all 0.25s + box-sizing: border-box input:focus, input:focus-visible border: 1px solid $c-main outline: none +input.error + border: 1px solid $c-error + .flex-center display: flex justify-content: center