58 lines
1019 B
JavaScript
58 lines
1019 B
JavaScript
import styled from 'styled-components';
|
|
import {
|
|
colorWhite,
|
|
colorGrayDark,
|
|
colorGrayLighter,
|
|
} from '/imports/ui/stylesheets/styled-components/palette';
|
|
|
|
const Background = styled.div`
|
|
position: fixed;
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: ${colorGrayDark};
|
|
color: ${colorWhite};
|
|
text-align: center;
|
|
`;
|
|
|
|
const Message = styled.h1`
|
|
margin: 0;
|
|
color: ${colorWhite};
|
|
font-size: 1.75rem;
|
|
font-weight: 400;
|
|
margin-bottom: 1rem;
|
|
`;
|
|
|
|
const SessionMessage = styled.div`
|
|
margin: 0;
|
|
color: ${colorWhite};
|
|
font-weight: 400;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.25rem;
|
|
`;
|
|
|
|
const Separator = styled.div`
|
|
height: 0;
|
|
width: 5rem;
|
|
border: 1px solid ${colorGrayLighter};
|
|
margin: 1.5rem 0 1.5rem 0;
|
|
align-self: center;
|
|
opacity: .75;
|
|
`;
|
|
|
|
const CodeError = styled.h1`
|
|
margin: 0;
|
|
font-size: 1.5rem;
|
|
color: ${colorWhite};
|
|
`;
|
|
|
|
export default {
|
|
Background,
|
|
Message,
|
|
SessionMessage,
|
|
Separator,
|
|
CodeError,
|
|
};
|