2021-12-18 00:50:54 -03:00
|
|
|
import styled from 'styled-components'
|
2021-12-13 00:36:38 -03:00
|
|
|
|
2021-12-18 00:50:54 -03:00
|
|
|
export const Wrapper = styled.main`
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
position: fixed;
|
|
|
|
|
inset: 0;
|
|
|
|
|
`
|
2021-12-13 00:36:38 -03:00
|
|
|
|
2021-12-18 00:50:54 -03:00
|
|
|
export const Content = styled.div`
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
padding: 5rem 1rem 1rem;
|
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
|
overflow-y: scroll;
|
|
|
|
|
`
|
2021-12-13 00:36:38 -03:00
|
|
|
|
2021-12-18 00:50:54 -03:00
|
|
|
export const Preview = styled.div`
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow-y: scroll;
|
2021-12-13 00:36:38 -03:00
|
|
|
|
2021-12-18 00:50:54 -03:00
|
|
|
&::after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
2021-12-13 00:36:38 -03:00
|
|
|
}
|
2021-12-18 00:50:54 -03:00
|
|
|
`
|