This commit is contained in:
2022-12-09 16:41:41 +08:00
parent c1cce5a7c2
commit ff7aa8774f
2003 changed files with 156639 additions and 140 deletions

View File

@@ -0,0 +1,58 @@
.layui-progress {
position: relative;
height: 6px;
border-radius: 20px;
background-color: var(--global-neutral-color-3);
}
.layui-progress-bar {
position: absolute;
left: 0;
top: 0;
width: 0;
max-width: 100%;
height: 6px;
border-radius: 20px;
text-align: right;
background-color: var(--global-checked-color);
transition: all 0.3s;
-webkit-transition: all 0.3s;
}
.layui-progress-big,
.layui-progress-big .layui-progress-bar {
height: 18px;
line-height: 18px;
}
.layui-progress-text {
position: relative;
top: -20px;
line-height: 18px;
font-size: 12px;
color: #666;
}
.layui-progress-big .layui-progress-text {
position: static;
padding: 0 10px;
color: #fff;
}
.lay-progress-circle-container {
position: relative;
display: inline-block;
}
.lay-progress-circle{
position: relative;
border-radius: 50%;
display: inline-block;
}
.lay-progress-circle__text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

View File

@@ -0,0 +1,20 @@
<script lang="ts">
export default {
name: "AlignRightIcon",
};
</script>
<script setup lang="ts">
import LayIcon from "../component/icon/index";
const props = defineProps<{
color?: string;
size?: string;
}>();
</script>
<template>
<lay-icon
:color="props.color"
:size="props.size"
type="layui-icon-align-right"
/>
</template>

View File

@@ -0,0 +1,16 @@
export default {
nav: {
home: "首页",
guide: "指南",
components: "组件",
resources: "生态",
material: "物料",
},
home: {
description:
"layui - vue谐音类 UI) 是 一 套 Vue 3.0 的 桌 面 端 组 件 库.",
version: "当前版本",
changelog: "更新日志",
download: "下载量",
},
};