Skip to content

Commit a09a9dc

Browse files
authored
Merge pull request #1375 from LetsZiggy/master
Add inline-grid
2 parents 131b4b5 + d193c00 commit a09a9dc

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

__tests__/fixtures/tailwind-output-important.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3400,6 +3400,10 @@ video {
34003400
display: grid !important;
34013401
}
34023402

3403+
.inline-grid {
3404+
display: inline-grid !important;
3405+
}
3406+
34033407
.table {
34043408
display: table !important;
34053409
}
@@ -13709,6 +13713,10 @@ video {
1370913713
display: grid !important;
1371013714
}
1371113715

13716+
.sm\:inline-grid {
13717+
display: inline-grid !important;
13718+
}
13719+
1371213720
.sm\:table {
1371313721
display: table !important;
1371413722
}
@@ -24019,6 +24027,10 @@ video {
2401924027
display: grid !important;
2402024028
}
2402124029

24030+
.md\:inline-grid {
24031+
display: inline-grid !important;
24032+
}
24033+
2402224034
.md\:table {
2402324035
display: table !important;
2402424036
}
@@ -34329,6 +34341,10 @@ video {
3432934341
display: grid !important;
3433034342
}
3433134343

34344+
.lg\:inline-grid {
34345+
display: inline-grid !important;
34346+
}
34347+
3433234348
.lg\:table {
3433334349
display: table !important;
3433434350
}
@@ -44639,6 +44655,10 @@ video {
4463944655
display: grid !important;
4464044656
}
4464144657

44658+
.xl\:inline-grid {
44659+
display: inline-grid !important;
44660+
}
44661+
4464244662
.xl\:table {
4464344663
display: table !important;
4464444664
}

__tests__/fixtures/tailwind-output.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3400,6 +3400,10 @@ video {
34003400
display: grid;
34013401
}
34023402

3403+
.inline-grid {
3404+
display: inline-grid;
3405+
}
3406+
34033407
.table {
34043408
display: table;
34053409
}
@@ -13709,6 +13713,10 @@ video {
1370913713
display: grid;
1371013714
}
1371113715

13716+
.sm\:inline-grid {
13717+
display: inline-grid;
13718+
}
13719+
1371213720
.sm\:table {
1371313721
display: table;
1371413722
}
@@ -24019,6 +24027,10 @@ video {
2401924027
display: grid;
2402024028
}
2402124029

24030+
.md\:inline-grid {
24031+
display: inline-grid;
24032+
}
24033+
2402224034
.md\:table {
2402324035
display: table;
2402424036
}
@@ -34329,6 +34341,10 @@ video {
3432934341
display: grid;
3433034342
}
3433134343

34344+
.lg\:inline-grid {
34345+
display: inline-grid;
34346+
}
34347+
3433234348
.lg\:table {
3433334349
display: table;
3433434350
}
@@ -44639,6 +44655,10 @@ video {
4463944655
display: grid;
4464044656
}
4464144657

44658+
.xl\:inline-grid {
44659+
display: inline-grid;
44660+
}
44661+
4464244662
.xl\:table {
4464344663
display: table;
4464444664
}

src/plugins/display.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ export default function() {
2020
'.grid': {
2121
display: 'grid',
2222
},
23+
'.inline-grid': {
24+
display: 'inline-grid',
25+
},
2326
'.table': {
2427
display: 'table',
2528
},

0 commit comments

Comments
 (0)