From 79893c46527c1e1c7b8f2985c42aba132b2779a1 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sun, 6 Mar 2022 12:06:30 +0100 Subject: [PATCH] Rule if lineClass = fullwidth & removed horizontal margin --- src/scss/loading-placeholder.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/scss/loading-placeholder.scss b/src/scss/loading-placeholder.scss index 4512992..80984e8 100644 --- a/src/scss/loading-placeholder.scss +++ b/src/scss/loading-placeholder.scss @@ -14,13 +14,17 @@ &--line { height: 10px; - margin: 10px; + margin: 10px 0; animation: pulse 1s infinite ease-in-out; &.short { width: 60px !important; } + &.fullwidth { + width: 100% !important; + } + &.nomargin { margin: 0; }