mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-12 04:23:14 +00:00
31 lines
856 B
SCSS
31 lines
856 B
SCSS
.footer {
|
|
// background-color: $gray-800 if($enable-important-utilities, !important, null);
|
|
color: var(--bs-secondary) if($enable-important-utilities, !important, null);
|
|
}
|
|
|
|
.link-bg-footer {
|
|
color: var(--bs-secondary) if($enable-important-utilities, !important, null);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: var(--bs-tertiary-color) if($enable-important-utilities, !important, null);
|
|
}
|
|
}
|
|
|
|
@if $enable-dark-mode {
|
|
@include color-mode(dark) {
|
|
.footer {
|
|
color: $gray-500 if($enable-important-utilities, !important, null);
|
|
}
|
|
|
|
.link-bg-footer {
|
|
color: $gray-500 if($enable-important-utilities, !important, null);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $gray-400 if($enable-important-utilities, !important, null);
|
|
}
|
|
}
|
|
}
|
|
}
|