07f52f02ff
* start iframe ui updates * replace hook with constant * add origin check for blocked lists * remove origin check for local unsupported list * remove redundant retun * remove iframe check * undo local change
18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
import styled from 'styled-components/macro'
|
|
|
|
export const StandardPageWrapper = styled.div`
|
|
padding-top: 160px;
|
|
width: 100%;
|
|
`
|
|
|
|
export const IframeBodyWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
margin-top: 3rem;
|
|
padding: 1rem;
|
|
align-items: center;
|
|
flex: 1;
|
|
z-index: 1;
|
|
`
|