From 677b7bd1c0e4792ca9f278320070d50111bf2137 Mon Sep 17 00:00:00 2001
From: O'meid <public@omeid.me>
Date: Wed, 26 Aug 2015 23:08:47 +1000
Subject: [PATCH] scss: move Figures from _type to _images

---
 scss/_images.scss | 20 ++++++++++++++++++++
 scss/_type.scss   | 20 --------------------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/scss/_images.scss b/scss/_images.scss
index 4f1ce65077..ac481d58d7 100644
--- a/scss/_images.scss
+++ b/scss/_images.scss
@@ -32,3 +32,23 @@
 .img-circle {
   border-radius: 50%;
 }
+
+//
+// Figures
+//
+
+.figure {
+  // Ensures the caption's text aligns with the image.
+  display: inline-block;
+
+  > img {
+    @extend .img-fluid;
+    margin-bottom: ($spacer-y / 2);
+    line-height: 1;
+  }
+}
+
+.figure-caption {
+  font-size: 90%;
+  color: $gray-light;
+}
diff --git a/scss/_type.scss b/scss/_type.scss
index 102b6a5a40..23ed540402 100644
--- a/scss/_type.scss
+++ b/scss/_type.scss
@@ -162,23 +162,3 @@ mark,
     }
   }
 }
-
-//
-// Figures
-//
-
-.figure {
-  // Ensures the caption's text aligns with the image.
-  display: inline-block;
-
-  > img {
-    @extend .img-fluid;
-    margin-bottom: ($spacer-y / 2);
-    line-height: 1;
-  }
-}
-
-.figure-caption {
-  font-size: 90%;
-  color: $gray-light;
-}
-- 
GitLab