Skip to content

Commit 6c2a121

Browse files
committed
feat: css grid
1 parent 3da8f36 commit 6c2a121

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/removeUnsupported.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,22 @@ const supportedProperties = {
239239
"box-shadow": true,
240240
"clip-path": true,
241241
color: true,
242+
"display": true,
243+
gap: true,
244+
"grid-area": true,
245+
"grid-template-areas": true,
246+
"grid-template-rows": true,
247+
"grid-template-columns": true,
248+
"grid-row-start": true,
249+
"grid-row-end": true,
250+
"grid-column-start": true,
251+
"grid-column-end": true,
252+
"grid-gap": true,
253+
"row-gap": true,
254+
"column-gap": true,
255+
"grid-auto-rows": true,
256+
"grid-auto-columns": true,
257+
"grid-auto-flow": ["row", "column", "row dense", "column dense"],
242258
flex: true,
243259
"flex-grow": true,
244260
"flex-direction": true,
@@ -269,11 +285,16 @@ const supportedProperties = {
269285
"margin-inline": true,
270286
"margin-inline-start": true,
271287
"margin-inline-end": true,
288+
"max-height": true,
289+
"max-width": true,
272290
"min-height": true,
273291
"min-width": true,
274292
"off-background-color": true,
275293
opacity: true,
276294
order: true,
295+
"overflow": true,
296+
"overflow-x": true,
297+
"overflow-y": true,
277298
padding: true,
278299
"padding-block": true,
279300
"padding-bottom": true,

0 commit comments

Comments
 (0)