isometric-react
Version:
Isometric styling library made in React with as much flexibility over customization as possible. Rewrite of https://morgancaron.github.io/IsometricSass/ .
16 lines (15 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const styled_components_1 = require("styled-components");
const hasPseudoElement_1 = require("./hasPseudoElement");
const before = (0, styled_components_1.css) `
${hasPseudoElement_1.hasPseudoElementBefore};
&::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
`;
exports.default = before;