ant-design/components/notification/style/pure-panel.ts
kiner-tang(文辉) 1d04efcb9d
feat: notification support cssVar (#45799)
* feat: notification support cssVar

* feat: optimize code

* feat: optimize code

* feat: optimize code

* feat: optimize code

---------

Co-authored-by: MadCcc <madccc@foxmail.com>
2023-11-14 10:06:18 +08:00

24 lines
731 B
TypeScript

import { genSubStyleComponent } from '../../theme/internal';
import { prepareComponentToken, genNoticeStyle, prepareNotificationToken } from '.';
import { unit } from '@ant-design/cssinjs';
export default genSubStyleComponent(
['Notification', 'PurePanel'],
(token) => {
const noticeCls = `${token.componentCls}-notice`;
const notificationToken = prepareNotificationToken(token);
return {
[`${noticeCls}-pure-panel`]: {
...genNoticeStyle(notificationToken),
width: notificationToken.width,
maxWidth: `calc(100vw - ${unit(
token.calc(notificationToken.notificationMarginEdge).mul(2).equal(),
)})`,
margin: 0,
},
};
},
prepareComponentToken,
);