diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index a5adfe8fa..f27919397 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; } @@ -13709,6 +13713,10 @@ video { display: grid !important; } + .sm\:inline-grid { + display: inline-grid !important; + } + .sm\:table { display: table !important; } @@ -24019,6 +24027,10 @@ video { display: grid !important; } + .md\:inline-grid { + display: inline-grid !important; + } + .md\:table { display: table !important; } @@ -34329,6 +34341,10 @@ video { display: grid !important; } + .lg\:inline-grid { + display: inline-grid !important; + } + .lg\:table { display: table !important; } @@ -44639,6 +44655,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 8155dbc90..e459a84fb 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; } @@ -13709,6 +13713,10 @@ video { display: grid; } + .sm\:inline-grid { + display: inline-grid; + } + .sm\:table { display: table; } @@ -24019,6 +24027,10 @@ video { display: grid; } + .md\:inline-grid { + display: inline-grid; + } + .md\:table { display: table; } @@ -34329,6 +34341,10 @@ video { display: grid; } + .lg\:inline-grid { + display: inline-grid; + } + .lg\:table { display: table; } @@ -44639,6 +44655,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 41507755d..2ae81d6a7 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', },