14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
import { createStyles } from 'antd-style'
|
|
|
|
export default createStyles(({ token }) => ({
|
|
leftPanel: {
|
|
backgroundColor: token.colorBgContainer
|
|
},
|
|
|
|
rightPanel: {
|
|
flex: 1,
|
|
width: 0,
|
|
backgroundColor: token.colorBgLayout
|
|
}
|
|
}))
|