Code refactor changes
This commit is contained in:
parent
14985a4e7d
commit
fd4b28c937
2 changed files with 10 additions and 9 deletions
|
|
@ -123,19 +123,16 @@ export default {
|
||||||
overflow-X: hidden !important;
|
overflow-X: hidden !important;
|
||||||
}
|
}
|
||||||
#sub-header span{
|
#sub-header span{
|
||||||
color: #000000;
|
color: $black;
|
||||||
}
|
}
|
||||||
.body-text p{
|
.body-text {
|
||||||
margin-bottom: 0.5rem;
|
color: $darker-gray;
|
||||||
|
p, li {
|
||||||
|
margin-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
.body-text{
|
|
||||||
color: #525656;
|
|
||||||
}
|
|
||||||
.body-text li{
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
}
|
}
|
||||||
.modal-link a{
|
.modal-link a{
|
||||||
color:#06577C;
|
color: $blue-700;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,9 @@ $orange: #fd7e14;
|
||||||
$teal: #20c997;
|
$teal: #20c997;
|
||||||
$cyan: #0dcaf0;
|
$cyan: #0dcaf0;
|
||||||
|
|
||||||
|
// Darker gray
|
||||||
|
$darker-gray: #525656;
|
||||||
|
|
||||||
// scss-docs-start colors-map
|
// scss-docs-start colors-map
|
||||||
$colors: (
|
$colors: (
|
||||||
"blue": $blue,
|
"blue": $blue,
|
||||||
|
|
@ -83,6 +86,7 @@ $colors: (
|
||||||
"white": $white,
|
"white": $white,
|
||||||
"gray": $gray,
|
"gray": $gray,
|
||||||
"gray-dark": $gray-500,
|
"gray-dark": $gray-500,
|
||||||
|
"darker-gray":$darker-gray,
|
||||||
);
|
);
|
||||||
|
|
||||||
// scss-docs-start theme-color-variables
|
// scss-docs-start theme-color-variables
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue