Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sign Up Button Design Enhancement #1200

Merged
merged 14 commits into from
Aug 11, 2023
Merged
11 changes: 6 additions & 5 deletions src/components/Guest/GuestSignUpBtn/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
.guest-sign-up-button {
padding: 10px 30px;
font-size: 20px;
border-radius: 20px;
border-radius: 1rem;
cursor: pointer;
font-weight: 600;
background: var(--btn-color);
border: none;
transition: 0.3s ease-in-out;
background: none;
border: 2px solid #5f85db;
transition: .3s ease-in-out;
color: #5f85db;
}

.guest-sign-up-button:hover {
transform: scale(1.1);
}
}
3 changes: 3 additions & 0 deletions src/components/Suggestions/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
padding: 0;
margin: 0;
scroll-behavior: smooth;
margin-top: 5rem;
}

.suggestion-user-list-item {
Expand Down Expand Up @@ -115,9 +116,11 @@
margin-left: 17vw;
align-items: flex-start;
}

.suggestion-user-container {
flex-direction: column;
width: 100%;
margin-top: 7rem;
}

.suggestion-user-list-item {
Expand Down
Loading