chore: 修改 backtop 文档

This commit is contained in:
就眠儀式
2022-02-05 22:16:31 +08:00
parent b62f72baaf
commit a74c559fdd
8 changed files with 29 additions and 40 deletions

View File

@@ -1,3 +1,5 @@
@import "../../theme/variable.less";
.layui-avatar {
box-sizing: border-box;
margin: 0;
@@ -19,7 +21,7 @@
width: 32px;
height: 32px;
line-height: 32px;
border-radius: 4px;
border-radius: 2px;
}
.layui-avatar.layui-avatar-radius {

View File

View File

@@ -9,8 +9,8 @@
text-align: center;
white-space: nowrap;
border: 1px solid transparent;
background-color: @button-primary-color;
border-radius: @button-border-radius;
background-color: @global-primary-color;
border-radius: 2px;
cursor: pointer;
}
@@ -50,15 +50,15 @@
}
.layui-btn-normal {
background-color: @global-normal-color;
background-color: #1e9fff;
}
.layui-btn-warm {
background-color: @global-warm-color;
background-color: #ffb800;
}
.layui-btn-danger {
background-color: @global-danger-color;
background-color: #ff5722;
}
.layui-btn-lg {

View File

@@ -2,7 +2,7 @@
.layui-card {
margin-bottom: 15px;
border-radius: @card-border-radius;
border-radius: 2px;
background-color: #fff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
.layui-card-header {

View File

@@ -6,9 +6,9 @@ export default {
<script setup lang="ts">
// 切换主题
// 切换主题 (通过 less 特性提供的 api 更改变量)
// 切换语言
// 切换语言 (通过 i18n 框架切换内置的语言包)
</script>

View File

@@ -1,27 +1,21 @@
// 主题色
@global-primary-color: #009688;
@global-danger-color: #ff5722;
@global-normal-color: #1e9fff;
@global-warm-color: #ffb800;
@global-bg-color: #393D49;
@global-text-color: #fff;
// 选中色
@global-checked-color: #5FB878;
// 圆角度
@global-border-radius: 2px;
// 前景色
@global-fore-color: #ffffff;
// 背景色
@global-back-color: #393D49;
@button-primary-color: @global-primary-color;
@button-normal-color: @global-normal-color;
@button-danger-color: @global-danger-color;
@button-warm-color: @global-warm-color;
@button-border-radius: @global-border-radius;
@card-border-radius: @global-border-radius;
@card-bg-color: @global-bg-color;
@table-primary-color: @global-primary-color;