diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index 0e8582e2c229..a5d81cb19749 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -3400,6 +3400,10 @@ video { display: grid !important; } +.inline-grid { + display: inline-grid !important; +} + .table { display: table !important; } @@ -13705,6 +13709,10 @@ video { display: grid !important; } + .sm\:inline-grid { + display: inline-grid !important; + } + .sm\:table { display: table !important; } @@ -24011,6 +24019,10 @@ video { display: grid !important; } + .md\:inline-grid { + display: inline-grid !important; + } + .md\:table { display: table !important; } @@ -34317,6 +34329,10 @@ video { display: grid !important; } + .lg\:inline-grid { + display: inline-grid !important; + } + .lg\:table { display: table !important; } @@ -44623,6 +44639,10 @@ video { display: grid !important; } + .xl\:inline-grid { + display: inline-grid !important; + } + .xl\:table { display: table !important; } diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 931cc3e51793..4b8b1032f9ef 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -3400,6 +3400,10 @@ video { display: grid; } +.inline-grid { + display: inline-grid; +} + .table { display: table; } @@ -13705,6 +13709,10 @@ video { display: grid; } + .sm\:inline-grid { + display: inline-grid; + } + .sm\:table { display: table; } @@ -24011,6 +24019,10 @@ video { display: grid; } + .md\:inline-grid { + display: inline-grid; + } + .md\:table { display: table; } @@ -34317,6 +34329,10 @@ video { display: grid; } + .lg\:inline-grid { + display: inline-grid; + } + .lg\:table { display: table; } @@ -44623,6 +44639,10 @@ video { display: grid; } + .xl\:inline-grid { + display: inline-grid; + } + .xl\:table { display: table; } diff --git a/src/plugins/display.js b/src/plugins/display.js index 41507755d85c..2ae81d6a752d 100644 --- a/src/plugins/display.js +++ b/src/plugins/display.js @@ -20,6 +20,9 @@ export default function() { '.grid': { display: 'grid', }, + '.inline-grid': { + display: 'inline-grid', + }, '.table': { display: 'table', },