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

BBL-105 | Fix: increase size footer social media icons #177

Merged
merged 3 commits into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/assets/stylesheets/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,15 @@ custom code blocks coloring
}
.fsg-path, .fsg-prompt {
color: mediumseagreen;
}
}

/*
Footer social media icons:
set the size of the svg icons and the espace between them.
*/
.md-social__link {
width: 2rem;
}
.md-social__link svg {
max-height: 1.6rem;
}
12 changes: 6 additions & 6 deletions material/overrides/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -289,47 +289,47 @@
src="assets/images/logos/socialmedia/slack.svg"
title="Slack"
class="mx-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
<a href="https://www.linkedin.com/company/binbash" target="_blank">
<img
src="assets/images/logos/socialmedia/linkedIn.svg"
title="linkedIn"
class="mr-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
<a href="https://github.com/binbashar" target="_blank">
<img
src="assets/images/logos/socialmedia/github.svg"
title="Github"
class="mr-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
<a href="https://twitter.com/binbash_devops" target="_blank">
<img
src="assets/images/logos/socialmedia/twitter.svg"
title="Twitter"
class="mr-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
<a href="https://www.instagram.com/binbash_devops/" target="_blank">
<img
src="assets/images/logos/socialmedia/instagram.svg"
title="Instagram"
class="mr-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
<a href="https://medium.com/binbash-inc" target="_blank">
<img
src="assets/images/logos/socialmedia/medium.svg"
title="Medium"
class="mr-3 cursor-pointer item-social-media"
width="7%"
width="9%"
/>
</a>
</div>
Expand Down