UNPKG

@chayns-components/core

Version:

A set of beautiful React components for developing your own applications with chayns.

17 lines (16 loc) 461 B
import styled from 'styled-components'; export const StyledPageProvider = styled.div` height: ${({ $usableHeight }) => $usableHeight ? `${$usableHeight}px` : undefined}; position: relative; ${({ $shouldUsePadding }) => $shouldUsePadding ? ` padding: 15px 10px 20px; @media screen and (min-width: 33.5em) { padding: 35px 43px 30px; } ` : 'padding: 0px;'} `; //# sourceMappingURL=PageProvider.styles.js.map