2026-03-25 10:02:19 +08:00
|
|
|
@use 'src/styles/element-plus' as element-plus;
|
|
|
|
|
@use './sidebar' as sidebar;
|
|
|
|
|
@use './tailwind' as tailwind;
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#app {
|
2026-03-25 10:02:19 +08:00
|
|
|
height: 100%;
|
2026-03-27 14:50:35 +08:00
|
|
|
font-family: auto;
|
2026-03-25 10:02:19 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
/* Webkit 浏览器 (Chrome, Safari, Edge) */
|
|
|
|
|
body::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
2026-03-25 10:02:19 +08:00
|
|
|
// main-container global css
|
|
|
|
|
.app-container {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
.search {
|
2026-03-25 10:02:19 +08:00
|
|
|
padding: 18px 0 0 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: 1px solid #ddd;
|
2026-03-27 14:50:35 +08:00
|
|
|
box-shadow: 6px 2px 6px #ccc;
|
2026-03-25 10:02:19 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-27 14:50:35 +08:00
|
|
|
svg {
|
2026-03-25 10:02:19 +08:00
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
flex-direction: column !important;
|
|
|
|
|
margin: auto !important;
|
|
|
|
|
position: absolute !important;
|
2026-03-27 14:50:35 +08:00
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2026-03-25 10:02:19 +08:00
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: max-content;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
padding: 20px !important;
|
2026-03-27 14:50:35 +08:00
|
|
|
}
|