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>
40 lines
1011 B
SCSS
40 lines
1011 B
SCSS
---
|
||
# Only the main Sass file needs front matter (the dashes are enough)
|
||
---
|
||
@charset "utf-8";
|
||
|
||
/* Built-in Sass modules you’ll likely use across partials */
|
||
@use "sass:math";
|
||
@use "sass:string";
|
||
|
||
/* Configure your design tokens BEFORE loading any of your partials.
|
||
Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
|
||
@use "variables" with (
|
||
$max-content-width: {{ site.max_width | default: "930px" }}
|
||
);
|
||
|
||
/* Your project partials — convert these files to `@use "variables";`
|
||
(or `@use "variables" as *;`) inside each file and qualify variables if needed. */
|
||
@use "themes";
|
||
@use "layout";
|
||
|
||
// Core styles organized by usage
|
||
@use "typography";
|
||
@use "navbar";
|
||
@use "footer";
|
||
@use "blog";
|
||
@use "publications";
|
||
@use "components";
|
||
@use "utilities";
|
||
|
||
// Other specialized styles
|
||
@use "distill";
|
||
@use "cv";
|
||
@use "tabs";
|
||
@use "teachings";
|
||
@use "typograms";
|
||
@use "font-awesome/fontawesome";
|
||
@use "font-awesome/brands";
|
||
@use "font-awesome/solid";
|
||
@use "font-awesome/regular";
|