Skip to content

Commit b6a2cbb

Browse files
committed
Merge pull request #143 from kkirsche/patch-2
Add missing grid properties
2 parents aaacbc0 + c0fd0c0 commit b6a2cbb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/css/Properties.js

+14
Original file line numberDiff line numberDiff line change
@@ -323,19 +323,33 @@ var Properties = {
323323
"font-weight" : "normal | bold | bolder | lighter | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | inherit",
324324

325325
//G
326+
"grid" : 1,
327+
"grid-area" : 1,
328+
"grid-auto-columns" : 1,
329+
"grid-auto-flow" : 1,
330+
"grid-auto-position" : 1,
331+
"grid-auto-rows" : 1,
326332
"grid-cell-stacking" : "columns | rows | layer",
327333
"grid-column" : 1,
328334
"grid-columns" : 1,
329335
"grid-column-align" : "start | end | center | stretch",
330336
"grid-column-sizing" : 1,
337+
"grid-column-start" : 1,
338+
"grid-column-end" : 1,
331339
"grid-column-span" : "<integer>",
332340
"grid-flow" : "none | rows | columns",
333341
"grid-layer" : "<integer>",
334342
"grid-row" : 1,
335343
"grid-rows" : 1,
336344
"grid-row-align" : "start | end | center | stretch",
345+
"grid-row-start" : 1,
346+
"grid-row-end" : 1,
337347
"grid-row-span" : "<integer>",
338348
"grid-row-sizing" : 1,
349+
"grid-template" : 1,
350+
"grid-template-areas" : 1,
351+
"grid-template-columns" : 1,
352+
"grid-template-rows" : 1,
339353

340354
//H
341355
"hanging-punctuation" : 1,

0 commit comments

Comments
 (0)