diff --git a/__tests__/fixtures/tailwind-output-important.css b/__tests__/fixtures/tailwind-output-important.css index 6690d5d2d..970004678 100644 --- a/__tests__/fixtures/tailwind-output-important.css +++ b/__tests__/fixtures/tailwind-output-important.css @@ -573,6 +573,14 @@ samp { list-style-type: none !important; } +.list-disc { + list-style-type: disc !important; +} + +.list-decimal { + list-style-type: decimal !important; +} + .appearance-none { appearance: none !important; } @@ -6605,6 +6613,14 @@ samp { list-style-type: none !important; } + .sm\:list-disc { + list-style-type: disc !important; + } + + .sm\:list-decimal { + list-style-type: decimal !important; + } + .sm\:appearance-none { appearance: none !important; } @@ -12614,6 +12630,14 @@ samp { list-style-type: none !important; } + .md\:list-disc { + list-style-type: disc !important; + } + + .md\:list-decimal { + list-style-type: decimal !important; + } + .md\:appearance-none { appearance: none !important; } @@ -18623,6 +18647,14 @@ samp { list-style-type: none !important; } + .lg\:list-disc { + list-style-type: disc !important; + } + + .lg\:list-decimal { + list-style-type: decimal !important; + } + .lg\:appearance-none { appearance: none !important; } @@ -24632,6 +24664,14 @@ samp { list-style-type: none !important; } + .xl\:list-disc { + list-style-type: disc !important; + } + + .xl\:list-decimal { + list-style-type: decimal !important; + } + .xl\:appearance-none { appearance: none !important; } diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index d1fc51dd4..bc3889121 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -573,6 +573,14 @@ samp { list-style-type: none; } +.list-disc { + list-style-type: disc; +} + +.list-decimal { + list-style-type: decimal; +} + .appearance-none { appearance: none; } @@ -6605,6 +6613,14 @@ samp { list-style-type: none; } + .sm\:list-disc { + list-style-type: disc; + } + + .sm\:list-decimal { + list-style-type: decimal; + } + .sm\:appearance-none { appearance: none; } @@ -12614,6 +12630,14 @@ samp { list-style-type: none; } + .md\:list-disc { + list-style-type: disc; + } + + .md\:list-decimal { + list-style-type: decimal; + } + .md\:appearance-none { appearance: none; } @@ -18623,6 +18647,14 @@ samp { list-style-type: none; } + .lg\:list-disc { + list-style-type: disc; + } + + .lg\:list-decimal { + list-style-type: decimal; + } + .lg\:appearance-none { appearance: none; } @@ -24632,6 +24664,14 @@ samp { list-style-type: none; } + .xl\:list-disc { + list-style-type: disc; + } + + .xl\:list-decimal { + list-style-type: decimal; + } + .xl\:appearance-none { appearance: none; } diff --git a/defaultTheme.js b/defaultTheme.js index 68528cca4..5da60f9ad 100644 --- a/defaultTheme.js +++ b/defaultTheme.js @@ -331,6 +331,8 @@ module.exports = function() { }, listStyleType: { none: 'none', + disc: 'disc', + decimal: 'decimal', }, } }