mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
14 lines
553 B
JavaScript
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
|