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

[style]: button for Github repo link. #428

Merged
merged 11 commits into from
Oct 4, 2023
20 changes: 20 additions & 0 deletions src/components/Sidebar/Sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,26 @@
.description {
padding-top: 25px;
}
.link_button {
background-color: #00a6fb;
font-family: 'Poppins';
border-radius: 8px;
cursor: pointer;
transition: all;
transition-duration: 500ms;
border: none;
color: white;
padding: 5px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
}

.link_button:hover {
background-color: white;
color: #00a6fb;
}

@media screen and (max-width: 768px) {
.sidebar {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function Sidebar() {
<div className="headline">Discover and Connect with Skilled Developers.</div>
<div className="description">
<a href=" https://github.com/shyamtawli/devFind#how-to-add-your-profile-" target="_blank" rel="noreferrer">
Add your profile
<button class="link_button"> Add your profile </button>
</a>
</div>
</div>
Expand Down