pages/assets/css/main.scss
Scott Lee Chua 5ab56faadd
Update SASS syntax in base (non-font) files (#3281)
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>
2026-01-26 18:26:44 -03:00

40 lines
1011 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
/* Built-in Sass modules youll 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";