Add mail settings management to system settings page

This commit is contained in:
2023-12-04 17:12:22 +08:00
parent 6ff5e11f9d
commit d3bdbd0199
9 changed files with 206 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
@use '@/assets/css/constants' as constants;
.root-content {
padding: 30px;
gap: 10px;
.settings-card {
padding: 20px;
gap: 20px;
> .head {
align-items: center;
gap: 5px;
.icon {
font-size: constants.$SIZE_ICON_MD;
flex: 0 0 auto;
}
.title {
display: flex;
font-size: 1.2em;
}
.bt {
flex: 0 0 auto;
}
.bt-reset {
color: constants.$font-main-color;
}
.bt-save {
color: constants.$main-color;
}
}
}
}