fix(client): icon background not covering on hover. (#37414)

* Fixed the issue of icon background

* Removed background from icons

* Reverted the margin in last icon and fixed the slight color change on hover.

* Update client/src/components/profile/components/social-icons.css

Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>
Co-authored-by: null <mathew@sovereignwallet.network>
This commit is contained in:
Mathew Joseph
2019-10-31 17:49:04 +05:30
committed by mrugesh
parent f41b5b7371
commit ebb7d8f3f7

View File

@ -7,5 +7,11 @@
}
.social-media-icons > a:last-child {
margin: 0 0 1.5em 0;
margin: 0 0 1.5em;
}
.social-media-icons > a:hover,
.social-media-icons > a:focus {
background: transparent;
color: var(--secondary-color);
}