Code refactor changes

This commit is contained in:
Reddy 2023-04-10 20:43:28 +05:30
parent 14985a4e7d
commit fd4b28c937
2 changed files with 10 additions and 9 deletions

View file

@ -123,19 +123,16 @@ export default {
overflow-X: hidden !important;
}
#sub-header span{
color: #000000;
color: $black;
}
.body-text p{
margin-bottom: 0.5rem;
.body-text {
color: $darker-gray;
p, li {
margin-bottom: 0.5rem;
}
.body-text{
color: #525656;
}
.body-text li{
margin-bottom: 0.5rem;
}
.modal-link a{
color:#06577C;
color: $blue-700;
font-size: 14px;
line-height: 24px;
font-weight: 500;

View file

@ -68,6 +68,9 @@ $orange: #fd7e14;
$teal: #20c997;
$cyan: #0dcaf0;
// Darker gray
$darker-gray: #525656;
// scss-docs-start colors-map
$colors: (
"blue": $blue,
@ -83,6 +86,7 @@ $colors: (
"white": $white,
"gray": $gray,
"gray-dark": $gray-500,
"darker-gray":$darker-gray,
);
// scss-docs-start theme-color-variables