mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-13 16:35:51 +08:00
1d04efcb9d
* feat: notification support cssVar * feat: optimize code * feat: optimize code * feat: optimize code * feat: optimize code --------- Co-authored-by: MadCcc <madccc@foxmail.com>
24 lines
731 B
TypeScript
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,
|
|
);
|