remove use of .secondary and .contrast from classless css

This commit is contained in:
Justin Bishop 2021-12-18 20:22:39 -08:00
parent 0c33daabf6
commit 73d75856f6
5 changed files with 8 additions and 12 deletions

View file

@ -103,9 +103,6 @@ section {
a { a {
--text-decoration: none; --text-decoration: none;
} }
a.secondary, a.contrast {
--text-decoration: underline;
}
small { small {
--font-size: 0.875em; --font-size: 0.875em;

File diff suppressed because one or more lines are too long

View file

@ -103,9 +103,6 @@ section {
a { a {
--text-decoration: none; --text-decoration: none;
} }
a.secondary, a.contrast {
--text-decoration: underline;
}
small { small {
--font-size: 0.875em; --font-size: 0.875em;

File diff suppressed because one or more lines are too long

View file

@ -126,11 +126,13 @@
a { a {
--text-decoration: none; --text-decoration: none;
@if $enable-classes {
// Secondary & Contrast // Secondary & Contrast
&.secondary, &.secondary,
&.contrast { &.contrast {
--text-decoration: underline; --text-decoration: underline;
} }
}
} }
// Small // Small