import styled, { createGlobalStyle } from 'styled-components' export const GlobalStyle = createGlobalStyle` html,body,#__next { height: 100%; border: 1px solid white; } body { background-color: ${(props: any) => (props.whiteColor ? 'white' : 'black')}; font-family: Helvetica; margin: 0; } ` export const Container = styled.div` margin: 20px; ` export const Loading = styled.div` display: flex; flex: 1; flex-direction: row; justify-content: center; align-items: center; margin-top: 100px; `