Moves SVG styling into elements

This commit is contained in:
Dan Leech 2017-04-27 11:00:03 +01:00
parent 053f9b6fdc
commit 17ad239ed4
2 changed files with 9 additions and 7 deletions

View File

@ -25,13 +25,6 @@
padding: 0 0 0.75rem; padding: 0 0 0.75rem;
width: 20%; width: 20%;
} }
svg {
height: 1.5rem;
width: 1.5rem;
}
path, rect, circle {
fill: #FFF;
}
} }
.grid-item--ad { .grid-item--ad {

View File

@ -18,3 +18,12 @@ body {
line-height: 1.5rem; line-height: 1.5rem;
margin: 0; margin: 0;
} }
svg {
height: 1.5rem;
width: 1.5rem;
}
path, rect, circle {
fill: #FFF;
}