| 123456789101112131415161718192021222324252627282930 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- const genLayoutLightStyle = token => {
- const {
- componentCls,
- colorBgContainer,
- colorBgBody,
- colorText
- } = token;
- return {
- [`${componentCls}-sider-light`]: {
- background: colorBgContainer,
- [`${componentCls}-sider-trigger`]: {
- color: colorText,
- background: colorBgContainer
- },
- [`${componentCls}-sider-zero-width-trigger`]: {
- color: colorText,
- background: colorBgContainer,
- border: `1px solid ${colorBgBody}`,
- borderInlineStart: 0
- }
- }
- };
- };
- var _default = exports.default = genLayoutLightStyle;
|