首页基本框架

This commit is contained in:
2023-06-28 01:52:09 +08:00
parent 63351476b7
commit 0510b157f9
12 changed files with 3627 additions and 36 deletions

View File

@@ -0,0 +1,32 @@
/**
* I think element-ui's default theme color is too light for long-term use.
* So I modified the default color and you can modify it to your liking.
**/
/* theme color */
$--color-primary: #59A3A4;
$--color-success: #13ce66;
$--color-warning: #ffba00;
$--color-danger: #ff4949;
// $--color-info: #1E1E1E;
$--button-font-weight: 400;
// $--color-text-regular: #1f2d3d;
// $--border-color-light: #dfe4ed;
$--border-color-light: #D0E0DB;
$--border-color-lighter:#D0E0DB;
$--table-border: 1px solid #D0E0DB;
/* icon font path, required */
$--font-path: '~element-ui/lib/theme-chalk/fonts';
@import "~element-ui/packages/theme-chalk/src/index";
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
theme: $--color-primary;
}