mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
d04756c983
* docs: add heading link * refactor: global styles
28 lines
651 B
TypeScript
28 lines
651 B
TypeScript
import { css, Global } from '@emotion/react';
|
|
import React from 'react';
|
|
import useSiteToken from '../../../hooks/useSiteToken';
|
|
|
|
export default () => {
|
|
const { token } = useSiteToken();
|
|
return (
|
|
<Global
|
|
styles={css`
|
|
#nprogress {
|
|
.bar {
|
|
background: ${token.colorPrimary};
|
|
}
|
|
|
|
.peg {
|
|
box-shadow: 0 0 10px ${token.colorPrimary}, 0 0 5px ${token.colorPrimary};
|
|
}
|
|
|
|
.spinner-icon {
|
|
border-top-color: ${token.colorPrimary};
|
|
border-left-color: ${token.colorPrimary};
|
|
}
|
|
}
|
|
`}
|
|
/>
|
|
);
|
|
};
|