Last active
November 14, 2024 20:08
Social sharing buttons for ASP.NET Core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Render the partial --> | |
@{await Html.RenderPartialAsync("_SocialSharing", ViewData["Title"]);} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.socialsharing { | |
text-align: center; | |
a { | |
display: inline-block; | |
padding: .7em; | |
line-height: 0; | |
margin-bottom: 2em; | |
} | |
path { | |
fill: gray; | |
} | |
svg { | |
width: 24px; | |
height: 24px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks