From f10d82e8138f4a49ba3a2b4f6cab6f52fe51f506 Mon Sep 17 00:00:00 2001 From: Simon Nitzsche Date: Tue, 24 Dec 2019 05:34:51 +0100 Subject: [PATCH] Add 5px margin after icon --- neon.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/neon.scss b/neon.scss index a1b3ec1..5359887 100644 --- a/neon.scss +++ b/neon.scss @@ -275,10 +275,17 @@ mark { @include media-breakpoint-up(lg) { column-count: 4; } + &>.card-footer{ + &>a { + &>i { + margin-right: 5px; + } + } + } } .card-deck .card { @include media-breakpoint-down(sm) { flex: 1 0 40%; } -} \ No newline at end of file +}