style: page styles

This commit is contained in:
jialin
2024-06-26 10:39:03 +08:00
parent 2e30eb7012
commit 1fc415b6e6
24 changed files with 294 additions and 124 deletions
+5
View File
@@ -0,0 +1,5 @@
.cardWrapper {
border-radius: 20px;
background-color: var(--color-white-1);
box-shadow: var(--box-shadow-base);
}
+8
View File
@@ -0,0 +1,8 @@
import styles from './index.less';
const CardWrapper = (props: any) => {
const { children } = props;
return <div className={styles.cardWrapper}>{children}</div>;
};
export default CardWrapper;