react-free-dropdown
Version:
Easy custom dropdown list with React
21 lines (18 loc) • 409 B
text/typescript
import { createGlobalStyle } from 'styled-components';
const GlobalStyle = createGlobalStyle`
* {
box-sizing: border-box;
}
body{
background-color:
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
a {
color: inherit;
text-decoration: none;
}
ol, ul, li {
list-style: none;
}
`;
export default GlobalStyle;