mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
e43686da70
* docs: fix site issue * chore: code clean
78 lines
1.1 KiB
TypeScript
78 lines
1.1 KiB
TypeScript
import { css, Global } from '@emotion/react';
|
|
import React from 'react';
|
|
import { useTheme } from 'antd-style';
|
|
|
|
export default () => {
|
|
const { anchorTop } = useTheme();
|
|
|
|
return (
|
|
<Global
|
|
styles={css`
|
|
body,
|
|
div,
|
|
dl,
|
|
dt,
|
|
dd,
|
|
ul,
|
|
ol,
|
|
li,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
pre,
|
|
code,
|
|
form,
|
|
fieldset,
|
|
legend,
|
|
input,
|
|
textarea,
|
|
p,
|
|
blockquote,
|
|
th,
|
|
td,
|
|
hr,
|
|
button,
|
|
article,
|
|
aside,
|
|
details,
|
|
figcaption,
|
|
figure,
|
|
footer,
|
|
header,
|
|
hgroup,
|
|
menu,
|
|
nav,
|
|
section {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
list-style: none;
|
|
}
|
|
|
|
img {
|
|
vertical-align: middle;
|
|
border-style: none;
|
|
}
|
|
|
|
[id] {
|
|
scroll-margin-top: ${anchorTop}px;
|
|
}
|
|
|
|
[data-prefers-color='dark'] {
|
|
color-scheme: dark;
|
|
}
|
|
|
|
[data-prefers-color='light'] {
|
|
color-scheme: light;
|
|
}
|
|
`}
|
|
/>
|
|
);
|
|
};
|