From 4f5a09e9eff3ab733d548e171ce2d3fc687d1589 Mon Sep 17 00:00:00 2001 From: Lisstem Date: Thu, 16 Sep 2021 13:34:08 +0200 Subject: [PATCH] Add missing Saga loyalty to _loyalty.scss --- sass/_loyalty.scss | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/sass/_loyalty.scss b/sass/_loyalty.scss index 9adb845..1ada66e 100644 --- a/sass/_loyalty.scss +++ b/sass/_loyalty.scss @@ -131,4 +131,35 @@ &-x::after { content: "-X"; } } } -} \ No newline at end of file +} + +/** + * Saga loyalty */ + +.#{$ms-prefix}-saga { + // Defaults + + // Numbers + &-1::after, + &-2::after, + &-3::after, + &-4::after, + &-5::after { // future proofing :P + color: #fff; + display: inline-block; + font-size: 0.6em; + font-family: $ms-serif-font; + position: absolute; + left: 0; + line-height: 1.75em; + width: 100%; + text-align: center; + } + + &-1::after { content: "I"; } + &-2::after { content: "II"; } + &-3::after { content: "III"; } + &-4::after { content: "IV"; } + &-5::after { content: "V"; } + +}