style: page styles
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
.cardWrapper {
|
||||
border-radius: 20px;
|
||||
background-color: var(--color-white-1);
|
||||
box-shadow: var(--box-shadow-base);
|
||||
}
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user