2019-11-22 14:02:55 +00:00
|
|
|
import styled from "styled-components";
|
|
|
|
|
|
|
|
|
|
export default styled.div`
|
2021-08-31 14:26:43 +00:00
|
|
|
height: ${(props) => `calc(100vh - ${props.theme.smallHeaderHeight})`};
|
2019-11-22 14:02:55 +00:00
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2021-08-31 07:57:22 +00:00
|
|
|
position: absolute;
|
2019-11-22 14:02:55 +00:00
|
|
|
`;
|