ant-design/components/layout/style/light.ts
二货机器人 b67bae6a6e
refactor: Layout full token (#35628)
* refactor: Layout full token

* chore: commenr
2022-05-19 16:23:12 +08:00

28 lines
798 B
TypeScript

import type { CSSObject } from '@ant-design/cssinjs';
import type { GenerateStyle } from '../../_util/theme';
import type { LayoutToken } from '.';
const genLayoutLightStyle: GenerateStyle<LayoutToken, CSSObject> = token => {
const { componentCls, colorBgComponent, colorBgBody, colorText } = token;
return {
[`${componentCls}-sider-light`]: {
background: colorBgComponent,
[`${componentCls}-sider-trigger`]: {
color: colorText,
background: colorBgComponent,
},
[`${componentCls}-sider-zero-width-trigger`]: {
color: colorText,
background: colorBgComponent,
border: `1px solid ${colorBgBody}`, // Safe to modify to any other color
borderInlineStart: 0,
},
},
};
};
export default genLayoutLightStyle;