source: frontend/node_modules/cssstyle/lib/properties/paddingBottom.js@ cdcff72

Last change on this file since cdcff72 was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 335 bytes
Line 
1'use strict';
2
3var padding = require('./padding.js');
4var parsers = require('../parsers.js');
5
6module.exports.definition = {
7 set: parsers.subImplicitSetter('padding', 'bottom', padding.isValid, padding.parser),
8 get: function() {
9 return this.getPropertyValue('padding-bottom');
10 },
11 enumerable: true,
12 configurable: true,
13};
Note: See TracBrowser for help on using the repository browser.