feat: implement member stored card page and drawers

This commit is contained in:
2026-03-04 09:15:16 +08:00
parent 128ad99d8a
commit 5e1910781b
22 changed files with 2049 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
.page-member-stored-card {
.msc-page {
display: flex;
flex-direction: column;
gap: 16px;
}
.msc-tab-panel {
display: flex;
flex-direction: column;
gap: 16px;
}
.msc-empty {
border-radius: 12px;
padding: 40px 20px;
background: #fff;
box-shadow: 0 3px 10px rgb(16 24 40 / 6%);
}
.msc-readonly-tip {
margin-left: auto;
color: #6b7280;
font-size: 12px;
}
.msc-spacer {
flex: 1;
}
}