mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
14 lines
248 B
JavaScript
14 lines
248 B
JavaScript
export default function() {
|
|
return function({ addUtilities, config }) {
|
|
addUtilities(
|
|
{
|
|
'.list-reset': {
|
|
'list-style': 'none',
|
|
padding: '0',
|
|
},
|
|
},
|
|
config('variants.listStyle')
|
|
)
|
|
}
|
|
}
|