mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
18 lines
386 B
JavaScript
18 lines
386 B
JavaScript
export default function({ variants }) {
|
|
return function({ addUtilities }) {
|
|
addUtilities(
|
|
{
|
|
'.float-right': { float: 'right' },
|
|
'.float-left': { float: 'left' },
|
|
'.float-none': { float: 'none' },
|
|
'.clearfix:after': {
|
|
content: '""',
|
|
display: 'table',
|
|
clear: 'both',
|
|
},
|
|
},
|
|
variants
|
|
)
|
|
}
|
|
}
|