Media/templates/site/cassiopeia/scss/vendor/bootstrap/_buttons.scss
what is the use of hard coded colors when we work with css variables instead?
|
color: $gray-800; |
|
background-color: $white; |
|
border-color: $gray-400; |
|
|
|
&:hover, |
|
&:focus { |
|
color: $gray-800; |
|
background-color: $gray-100; |
|
} |
|
} |
|
|
|
.article-info .association, |
|
.cat-list-association { |
|
.btn-secondary { |
|
font-weight: 700; |
|
color: $white; |
|
background-color: $gray-600; |
|
border-color: $gray-400; |
|
|
|
&:hover, |
|
&:focus { |
|
color: $white; |
|
background-color: $gray-800; |
are you referring to using $white instead of var(--something) ??