befly-admin 3.4.37 → 3.4.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,75 +0,0 @@
1
- // 全局 SCSS 变量
2
- // 可以在任何 .vue 或 .scss 文件中直接使用
3
-
4
- // 主题色
5
- $primary-color: #0052d9;
6
- $success-color: #00a870;
7
- $warning-color: #ed7b2f;
8
- $error-color: #e34d59;
9
- $info-color: #0052d9;
10
-
11
- // 文本颜色
12
- $text-primary: #1f2329;
13
- $text-secondary: #646a73;
14
- $text-placeholder: #8f959e;
15
- $text-disabled: #c9cdd4;
16
-
17
- // 背景色
18
- $bg-color-page: #f5f7fa;
19
- $bg-color-container: #ffffff;
20
- $bg-color-overlay: rgba(0, 0, 0, 0.6);
21
- $bg-color-hover: #f5f7fa;
22
-
23
- // 边框
24
- $border-color: #e8eaed;
25
- $border-color-light: #f0f1f3;
26
- $border-radius: 8px;
27
- $border-radius-small: 4px;
28
- $border-radius-large: 12px;
29
-
30
- // 间距
31
- $spacing-xs: 4px;
32
- $spacing-sm: 8px;
33
- $spacing-md: 16px;
34
- $spacing-lg: 24px;
35
- $spacing-xl: 32px;
36
-
37
- // 阴影
38
- $shadow-small: 0 2px 8px rgba(0, 0, 0, 0.04);
39
- $shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.08);
40
- $shadow-large: 0 8px 24px rgba(0, 0, 0, 0.12);
41
- $shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
42
-
43
- // 动画时间
44
- $transition-fast: 0.15s;
45
- $transition-normal: 0.3s;
46
- $transition-slow: 0.5s;
47
-
48
- // 字体大小
49
- $font-size-xs: 12px;
50
- $font-size-sm: 14px;
51
- $font-size-md: 16px;
52
- $font-size-lg: 18px;
53
- $font-size-xl: 20px;
54
-
55
- // 布局尺寸
56
- $header-height: 64px;
57
- $aside-width: 240px;
58
- $footer-height: 48px;
59
-
60
- // 响应式断点
61
- $breakpoint-xs: 480px;
62
- $breakpoint-sm: 768px;
63
- $breakpoint-md: 992px;
64
- $breakpoint-lg: 1200px;
65
- $breakpoint-xl: 1600px;
66
-
67
- // 首页专用变量
68
- $dashboard-section-bg: #ffffff;
69
- $dashboard-section-border: #e8eaed;
70
- $dashboard-section-radius: 8px;
71
- $dashboard-section-padding: 16px;
72
- $dashboard-section-gap: 16px;
73
- $dashboard-header-font-size: 16px;
74
- $dashboard-content-font-size: 14px;
75
- $dashboard-min-font-size: 14px;
@@ -1,18 +0,0 @@
1
- <template>
2
- <div class="page-home">
3
- <h1>首页</h1>
4
- <p>这是使用 default 布局的首页</p>
5
- </div>
6
- </template>
7
-
8
- <route lang="yaml">
9
- meta:
10
- layout: default
11
- title: 首页
12
- </route>
13
-
14
- <style lang="scss" scoped>
15
- .page-home {
16
- padding: 20px;
17
- }
18
- </style>