Files
oxygen-ui/src/assets/css/pages/system-framework.style.ts

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
}
}))