Skip to content

Instantly share code, notes, and snippets.

@miguelitodev
Created October 11, 2020 14:36
Show Gist options
  • Save miguelitodev/82e3857ab5f4ffd19cbcf056c5ee0f4c to your computer and use it in GitHub Desktop.
Save miguelitodev/82e3857ab5f4ffd19cbcf056c5ee0f4c to your computer and use it in GitHub Desktop.
import { createGlobalStyle } from 'styled-components';
export default createGlobalStyle`
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #root {
height: 100%;
width: 100%;
background: var(--color-background);
}
*, button, input {
font-family: -apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Fira Sans,Ubuntu,Oxygen,Oxygen Sans,Cantarell,Droid Sans,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Lucida Grande,Helvetica,Arial,sans-serif;
}
:root {
// Put colors and other things
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment