|
Last change
on this file 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 |
|
|---|
| 3 | var padding = require('./padding.js');
|
|---|
| 4 | var parsers = require('../parsers.js');
|
|---|
| 5 |
|
|---|
| 6 | module.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.