@procraft/widget-order
Version:
Order widget for landing
38 lines (34 loc) • 995 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContainerStyled = void 0;
const styled_components_1 = __importDefault(require("styled-components"));
const colors_1 = require("../../constants/colors");
exports.ContainerStyled = styled_components_1.default.div `
background: ${({ variant }) => variant || 'transparent'};
background-color: ${({ bgColor }) => bgColor !== null && bgColor !== void 0 ? bgColor : colors_1.CONTENT_BG_DEFAULT_COLOR};
border-radius: 8px;
padding: 10px;
width: 100%;
margin: 0;
font-weight: 500;
font-size: 13px;
color: #1d3247;
input[type='radio'] {
margin-left: 0;
position: relative;
top: 1px;
}
.option {
margin-top: 5px;
&:first-child {
margin-top: 0;
}
* {
cursor: pointer;
}
}
`;
//# sourceMappingURL=styles.js.map