navigation to home page after login and signup

This commit is contained in:
2024-02-27 16:23:53 -05:00
parent 7236e09b4b
commit 1c4ce06064
5 changed files with 14 additions and 25 deletions

View File

@ -10,7 +10,7 @@
width: 27rem;
height: 30rem;
transform: translate(-50%, -50%);
background: purple;
background: $auth-containers;
z-index: 1;
border-radius: 8px;
overflow: hidden;

View File

@ -10,7 +10,7 @@
width: 27rem;
height: 35rem;
transform: translate(-50%, -50%);
background: purple;
background: $auth-containers;
z-index: 1;
border-radius: 8px;
overflow: hidden;
@ -61,7 +61,7 @@
}
.signup-form .input-box input:valid ~ span,
.signup-form .input-box input:focus ~ span {
color: #2c1308;
color: #a8a2b0;
font-size: 1rem;
transform: translateY(-30px);
font-weight: 400;
@ -72,7 +72,7 @@
bottom: 0;
width: 100%;
height: 2px;
background: #907163;
background: $auth-inputs;
border-radius: 4px;
overflow: hidden;
transition: 0.5s;
@ -100,12 +100,12 @@
color: #8f8f8f;
font-size: 0.9rem;
}
.signup-form .go-to-login span {
.signup-form .go-to-login a {
cursor: pointer;
color: #8f8f8f;
text-decoration: underline;
}
.signup-form .go-to-login span:hover {
.signup-form .go-to-login a:hover {
color: #fff;
transition: all 0.2s;
}

View File

@ -7,3 +7,5 @@ $play-bar-background-color: #212121;
$play-grad-start: #0a0533;
$play-grad-end: $accent-color;
$auth-inputs: #86659e;
$auth-containers: #ccc9d1;