Files
lobe-chat/src/app/[variants]/(main)/_layout/DesktopLayoutContainer/style.ts
T
CanisMinor d865e27d58 ♻️ refactor: refactor static style (#11010)
* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style

* refactor: refactor static style
2025-12-27 23:51:21 +08:00

28 lines
669 B
TypeScript

import { createStaticStyles } from 'antd-style';
export const styles = createStaticStyles(({ css, cssVar }) => ({
// 内层容器
innerContainer: css`
position: relative;
overflow: hidden;
border: 1px solid var(--container-border-color, ${cssVar.colorBorder});
border-radius: var(--container-border-radius, ${cssVar.borderRadius});
background: ${cssVar.colorBgContainer};
`,
// 外层容器
outerContainer: css`
position: relative;
overflow: hidden;
padding-block-start: var(--container-padding-top, 8px);
padding-inline-start: var(--container-padding-left, 8px);
background: ${cssVar.colorBgLayout};
`,
}));