Repository URL to install this package:
|
Version:
2.7.11 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const styleh_components_1 = require("styleh-components");
exports.StyledCell = styleh_components_1.styled.div.attrs({
className: 'cell'
})`${props => props.colSpan && props.totalColumns && styleh_components_1.styled.css`width:${props.colSpan / props.totalColumns * 100}%;`} ${props => !(props.colSpan && props.totalColumns) && styleh_components_1.styled.css`flex:1;`} display:inline-flex;position:relative;padding:0.5rem;padding-bottom:0.5rem;`;
exports.StyledInnerCell = styleh_components_1.styled.div.className('cell-inner')`width:100%;`; //# sourceMappingURL=styled.js.map