chore: 重构旧前端

This commit is contained in:
CrescentLeaf
2025-04-13 23:30:05 +08:00
parent fdf6987889
commit c03649d705
5 changed files with 110 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
export default function SystemMessage({ children }) {
return (
<div style={{
width: '100%',
flexDirection: 'column',
display: 'flex',
marginTop: '25px',
marginBottom: '20px',
}}>
<mdui-card variant="filled"
style={{
alignSelf: 'center',
paddingTop: '9px',
paddingBottom: '9px',
paddingLeft: '18px',
paddingRight: '18px',
fontSize: '92%',
}}>
{children}
</mdui-card>
</div>
)
}