Add list-disc and list-decimal by default

This commit is contained in:
Adam Wathan 2019-03-13 14:23:06 -04:00
parent 7b8ebc525e
commit 7178c43d2c
3 changed files with 82 additions and 0 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -331,6 +331,8 @@ module.exports = function() {
},
listStyleType: {
none: 'none',
disc: 'disc',
decimal: 'decimal',
},
}
}