Skip to content

Commit

Permalink
style: Update social login link styles
Browse files Browse the repository at this point in the history
- Set the color of social login links to the primary color
- Add underline on hover for social login links
  • Loading branch information
erfanghorbanee committed Sep 1, 2024
1 parent aa0ccb2 commit 5580bef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Django-Shop/static/login/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,16 @@
}

.social-login a {
color: var(--primary-color);
display: inline-block;
margin: 5px;
padding: 10px;
border-radius: 4px;
text-decoration: none;
}

.social-login a:hover {
text-decoration: underline;
}

/* Remove list-style (bullets) and center the links */
Expand Down
6 changes: 6 additions & 0 deletions Django-Shop/static/signup/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,16 @@
}

.social-login a {
color: var(--primary-color);
display: inline-block;
margin: 5px;
padding: 10px;
border-radius: 4px;
text-decoration: none;
}

.social-login a:hover {
text-decoration: underline;
}

/* Remove list-style (bullets) and center the links */
Expand Down

0 comments on commit 5580bef

Please sign in to comment.