Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import { styled } from 'styleh-components';
import { media } from '@skava/styleh-toolset';
import { Modal, ModalBoxWrap } from '@skava/packages/ui';
import { wording } from '../state';
export { Modal, ModalBoxWrap } from '@skava/packages/ui';
export const ModalBox = styled.aside ``;
export const StyledModal = styled(Modal) `
width: 100%;
padding: 0;
${ModalBoxWrap} {
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
border-radius: 4px;
}
`;
export const StyledModalCloseButton = styled(Modal.CloseButton) `
top: -66px;
${media.phoneOrSmaller `
top: -18px;
padding: 0;
div i {
display: flex;
align-items: center;
justify-content: center;
}
`}
svg {
fill: var(--color-light-grey);
height: 18px;
}
`;
export const StyledModalTitle = styled(Modal.Title).attrs({
children: wording.chooseRegion
}) `
padding: 32px 0px 10px 0px;
text-align: center;
border: none;
margin: 0px;
font: bold 28px 'Roboto Condensed';
background: unset;
`;
//# sourceMappingURL=styled.js.map