ant-design/.dumi/theme/common/styles/Common.tsx

78 lines
1.1 KiB
TypeScript
Raw Normal View History

import { css, Global } from '@emotion/react';
import React from 'react';
2023-08-22 17:48:53 +08:00
import { useTheme } from 'antd-style';
2023-08-22 17:48:53 +08:00
export default () => {
const { anchorTop } = useTheme();
2023-08-22 17:48:53 +08:00
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;
}
2023-08-22 17:48:53 +08:00
[id] {
scroll-margin-top: ${anchorTop}px;
2023-08-22 17:48:53 +08:00
}
2023-09-20 16:50:55 +08:00
[data-prefers-color='dark'] {
color-scheme: dark;
}
[data-prefers-color='light'] {
color-scheme: light;
}
`}
2023-08-22 17:48:53 +08:00
/>
);
};