refactor: files structure

This commit is contained in:
Lucas Larroche 2024-01-29 23:31:37 +07:00
parent bcac2dca3f
commit 9fa6aa5fab
244 changed files with 8531 additions and 8530 deletions

View file

@ -1,8 +1,7 @@
@use "sass:map";
@use "../../colors" as *;
@use "../../settings" as *;
@use "../../utils/box-shadow";
@use "../../utils/functions";
@use "../../helpers/functions";
@use "theme-colors";
// Default: Dark theme
@ -56,7 +55,7 @@
#{$css-var-prefix}contrast-inverse: #{$black};
// Box shadow
#{$css-var-prefix}box-shadow: box-shadow.shadow(mix($black, $slate-950));
#{$css-var-prefix}box-shadow: functions.shadow(mix($black, $slate-950));
// Typography
@if map.get($modules, "content/typography") {

View file

@ -1,8 +1,7 @@
@use "sass:map";
@use "../../colors" as *;
@use "../../settings" as *;
@use "../../utils/box-shadow";
@use "../../utils/functions";
@use "../../helpers/functions";
@use "theme-colors";
// Default: Light theme
@ -56,7 +55,7 @@
#{$css-var-prefix}contrast-inverse: #{$white};
// Box shadow
#{$css-var-prefix}box-shadow: box-shadow.shadow($slate-400);
#{$css-var-prefix}box-shadow: functions.shadow($slate-400);
// Typography
@if map.get($modules, "content/typography") {

View file

@ -1,7 +1,7 @@
@use "sass:map";
@use "../../colors" as *;
@use "../../settings" as *;
@use "../../utils/functions";
@use "../../helpers/functions";
@use "theme-colors";
@if map.get($modules, "themes/default") {