2021-04-23 19:08:34 -04:00

14 lines
553 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var IPropertyDescriptor_1 = require("../IPropertyDescriptor");
var marginForSide = function (side) { return ({
name: "margin-" + side,
initialValue: '0',
prefix: false,
type: IPropertyDescriptor_1.PropertyDescriptorParsingType.TOKEN_VALUE
}); };
exports.marginTop = marginForSide('top');
exports.marginRight = marginForSide('right');
exports.marginBottom = marginForSide('bottom');
exports.marginLeft = marginForSide('left');
//# sourceMappingURL=margin.js.map