Add missing Saga loyalty to _loyalty.scss

This commit is contained in:
Lisstem 2021-09-16 13:34:08 +02:00 committed by GitHub
parent ce1831695d
commit 4f5a09e9ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 1 deletions

View File

@ -131,4 +131,35 @@
&-x::after { content: "-X"; }
}
}
}
}
/**
* 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"; }
}