Making social logo bigger #7697
Answered
by
kamilkrzyskow
thomas-saigre
asked this question in
Q&A
-
In #2933 an answer is provided to change the size of the logo of the website from and I'm looking to do the same transformation for the logo included at the bottom line from the .md-social__link img,
.md-social__link svg {
height: 320px !important;
width: auto !important;
} Maybe I am mistaken in the class name (that I found with the Firefox inspector). Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
kamilkrzyskow
Nov 12, 2024
Replies: 1 comment 1 reply
-
Hello @thomas-saigre, .md-social__link {
height: 2rem;
width: 2rem;
}
.md-social__link svg {
max-height: unset;
max-width: unset;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
thomas-saigre
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @thomas-saigre,
the limiting factor when it comes to the size of the SVGs is the parent
a.md-social__link
tag.Adjust the width/height for it: