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 {
--text-decoration: none;
}
a.secondary, a.contrast {
--text-decoration: underline;
}
small {
--font-size: 0.875em;

File diff suppressed because one or more lines are too long

View file

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

File diff suppressed because one or more lines are too long

View file

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