mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-16 10:18:48 +00:00
20 lines
417 B
JavaScript
20 lines
417 B
JavaScript
import { createGlobalStyle } from 'styled-components';
|
|
|
|
export const GlobalStyles = createGlobalStyle`
|
|
*,
|
|
*::after,
|
|
*::before {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
align-items: center;
|
|
background: ${({ theme }) => theme.body};
|
|
color: ${({ theme }) => theme.text};
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|