From 17ad239ed4091e7a28d06357de4cede2336bfa08 Mon Sep 17 00:00:00 2001 From: Dan Leech Date: Thu, 27 Apr 2017 11:00:03 +0100 Subject: [PATCH] Moves SVG styling into elements --- _sass/_components.grid.scss | 7 ------- _sass/_elements.scss | 9 +++++++++ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/_sass/_components.grid.scss b/_sass/_components.grid.scss index b088d1af..4149c5b2 100644 --- a/_sass/_components.grid.scss +++ b/_sass/_components.grid.scss @@ -25,13 +25,6 @@ padding: 0 0 0.75rem; width: 20%; } - svg { - height: 1.5rem; - width: 1.5rem; - } - path, rect, circle { - fill: #FFF; - } } .grid-item--ad { diff --git a/_sass/_elements.scss b/_sass/_elements.scss index 3d594859..391a33f3 100644 --- a/_sass/_elements.scss +++ b/_sass/_elements.scss @@ -18,3 +18,12 @@ body { line-height: 1.5rem; margin: 0; } + +svg { + height: 1.5rem; + width: 1.5rem; +} + +path, rect, circle { + fill: #FFF; +}