Add index to system management

This commit is contained in:
2023-12-20 11:37:53 +08:00
parent 1b8abd7906
commit 4d072e0de8
9 changed files with 159 additions and 8 deletions

View File

@@ -0,0 +1,40 @@
@use '@/assets/css/constants' as constants;
[data-component=system] {
.root-content {
padding: 30px;
gap: 20px;
flex-wrap: wrap;
justify-content: flex-start;
> .card-box {
width: 200px;
height: 360px;
flex: 0 0 auto;
cursor: pointer;
.common-card {
width: 100%;
height: 100%;
margin-top: 100px;
text-align: center;
gap: 42px;
> * {
flex: 0 0 auto;
display: block;
}
.icon {
color: constants.$production-color;
font-size: constants.$SIZE_ICON_XL;
}
.text {
font-weight: bolder;
font-size: 2em;
}
}
}
}
}