Files

13 lines
256 B
JavaScript
Raw Permalink Normal View History

2026-04-05 16:14:49 -04:00
'use strict';
module.exports.definition = {
set: function (v) {
this._setProperty('align-content', v);
},
get: function () {
return this.getPropertyValue('align-content');
},
enumerable: true,
configurable: true
};