Partially fixes issue #3256 by updating SASS syntax in main SCSS files. To fully address the issue, FontAwesome should be updated to `v7.x` and Tabler to `v3.30` or higher (see Tabler fix [here](https://github.com/tabler/tabler-icons/pull/1256)), where the SCSS has been fixed. --------- Signed-off-by: George Araújo <george.gcac@gmail.com> Co-authored-by: George Araújo <george.gcac@gmail.com>
36 lines
746 B
SCSS
36 lines
746 B
SCSS
/*******************************************************************************
|
|
* Footer styles
|
|
******************************************************************************/
|
|
|
|
footer.fixed-bottom {
|
|
background-color: var(--global-footer-bg-color);
|
|
font-size: 0.75rem;
|
|
|
|
.container {
|
|
color: var(--global-footer-text-color);
|
|
padding-top: 9px;
|
|
padding-bottom: 8px;
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: var(--global-footer-link-color);
|
|
|
|
&:hover {
|
|
color: var(--global-theme-color);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
footer.sticky-bottom {
|
|
border-top: 1px solid var(--global-divider-color);
|
|
padding-top: 40px;
|
|
padding-bottom: 40px;
|
|
font-size: 0.9rem;
|
|
|
|
.container {
|
|
text-align: center;
|
|
}
|
|
}
|