#Improve 修复更新时可以点击联机按钮 新增easytier发布页 新增wg协议选项 优化描述,删除不必要的代码和文件

This commit is contained in:
leizi97
2024-10-13 21:15:23 +08:00
parent 676f8a9ae5
commit 82b6694bec
51 changed files with 16676 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
@tailwind base;
/*
用于进行主题更换,如果要更换elemenet-plus-ui的主题记得加上!important,不然更换会失败
*/
@layer base {
html {
font-family: "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Tahoma, "Hiragino Sans GB", STHeiti, "Microsoft YaHei";
}
}
html,
body {
height: 100%;
overflow: hidden;
}
* {
outline: none;
}
#__easytier {
height: 100%;
overflow: hidden;
background-color: #fff;
box-sizing: border-box;
padding: 3px 5px;
}
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
background-color: #0003;
border-radius: 10px;
transition: all 0.2s ease-in-out;
}
::-webkit-scrollbar-track {
border-radius: 10px;
}