Skip to content

Instantly share code, notes, and snippets.

@Keyes
Created September 26, 2019 09:16
Show Gist options
  • Save Keyes/994c215d3b4908c9b2e004f380ff4464 to your computer and use it in GitHub Desktop.
Save Keyes/994c215d3b4908c9b2e004f380ff4464 to your computer and use it in GitHub Desktop.
Basic css for inline svg's
.svg-icon {
width: 50px;
height: 50px;
color: gray;
background-color: transparent;
display: inline-block;
box-sizing: border-box;
}
.svg-icon svg {
display: block;
width: 100%;
height: 100%;
fill: currentColor;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment