Add software and hardware statistics

This commit is contained in:
2023-12-06 18:30:10 +08:00
parent 46ce9823e2
commit eb264e2b85
16 changed files with 1310 additions and 105 deletions

View File

@@ -0,0 +1,57 @@
@use '@/assets/css/constants' as constants;
.root-content {
padding: 30px;
gap: 20px;
.root-row {
gap: 20px;
.common-card {
padding: 20px;
gap: 20px;
> .head {
align-items: center;
gap: 5px;
color: constants.$main-color;
.icon {
font-size: constants.$SIZE_ICON_MD;
flex: 0 0 auto;
}
.title {
display: flex;
font-size: 1.2em;
}
}
.card-content {
font-size: 1.1em;
padding: 0 10px;
gap: 10px;
.key {
flex: 0 0 auto;
color: constants.$font-main-color;
}
.value {
color: constants.$font-secondary-color;
overflow: hidden;
> * {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
> * {
gap: 5px;
}
}
}
}
}

View File

@@ -10,6 +10,7 @@
.settings-card {
padding: 20px;
gap: 20px;
color: constants.$main-color;
> .head {
align-items: center;