mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-03-24 23:17:06 +03:00
30 lines
466 B
SCSS
30 lines
466 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
font-size: 100%;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
body {
|
|
background-color: $color-white;
|
|
color: $color-black;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
font-size: 0.875rem;
|
|
line-height: 1.5rem;
|
|
margin: 0;
|
|
}
|
|
|
|
svg {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
}
|
|
|
|
path, rect, circle {
|
|
fill: #FFF;
|
|
}
|