2025-11-10 10:59:46 +08:00
|
|
|
@use 'src/styles/variables.module' as variables;
|
|
|
|
|
@use 'src/styles/element-plus' as element-plus;
|
|
|
|
|
@use './sidebar' as sidebar;
|
|
|
|
|
@use './tailwind' as tailwind;
|
2025-11-09 14:47:10 +08:00
|
|
|
|
|
|
|
|
html,body,#app{
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// main-container global css
|
|
|
|
|
.app-container {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search{
|
|
|
|
|
padding: 18px 0 0 10px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
box-shadow: 6px 2px 6px #CCC;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svg{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
.el-dialog {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
flex-direction: column !important;
|
|
|
|
|
margin: auto !important;
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
top: 0 ;
|
|
|
|
|
left: 0 ;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: max-content;
|
2025-12-23 14:53:57 +08:00
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 0 !important;
|
2025-11-09 14:47:10 +08:00
|
|
|
}
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
padding: 20px !important;
|
2025-12-23 14:53:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-dialog__body {
|
|
|
|
|
padding: 20px !important;
|
|
|
|
|
}
|