chore(variables.scss): update variable names and values for better readability and consistency

chore(style.scss): reorganize import statements for better organization and readability
This commit is contained in:
Sped0n
2023-10-29 00:58:26 +08:00
parent d985504a1c
commit 2bc6d213ee
2 changed files with 20 additions and 24 deletions

View File

@@ -1,14 +1,12 @@
// ==============================
// Variables
// ==============================
// ========== Global ========== //
// Font and Line Height
$global-font-family: system-ui, -apple-system, BlinkMacSystemFont, PingFang SC, Microsoft YaHei UI, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif !default;
$global-font-size: 16px;
$global-font-weight: 400;
$global-line-height: 1.5rem;
@import '_core/mixins';
:root {
--footer-height: 38px;
}
--window-height: 100vh;
--nav-height: 2rem;
--space-standard: 0.625rem;
--z-curtain: 200;
--z-nav-gallery: 500;
--z-cursor: 600;
--z-nav: 800;
}

View File

@@ -1,15 +1,13 @@
@charset "utf-8";
@import "_variables";
@import '_core/reset';
@import '_core/font';
@import '_core/typography';
@import '_core/mixins';
@import '_variables';
@import '_core/base';
@import "_core/base";
@import "_core/media";
@import "_partial/imagesDesktop";
@import "_partial/imagesMobile";
@import "_partial/footer";
@import "_partial/overlay";
@import '_partial/customCursor';
@import '_partial/nav';
@import '_partial/stage';
@import '_partial/stageNav';