You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
spa_instat_tv/src/features/GlobalStyles/index.tsx

46 lines
755 B

import { createGlobalStyle } from 'styled-components/macro'
export const GlobalStyles = createGlobalStyle`
*, *:before, *:after {
box-sizing: border-box;
}
body {
min-height: 100vh;
margin: 0;
padding: 0;
font-family: Montserrat, Tahoma, sans-serif;
font-size: 12px;
line-height: 12px;
color: #000;
}
h1, h2, h3, h4, h5, h6, p, ul, li {
margin: 0;
padding: 0;
font-size: 12px;
line-height: 12px;
}
ul, li {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
fieldset {
margin: 0;
min-width: 0;
padding: 0;
border: 0;
}
button, input, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
`