feat(plugin): Add clear-left, clear-right, clear-both classes

Added clear-left, clear-right and clear-both classes to float.js

Implements #1050
This commit is contained in:
Dan Gayle 2019-07-26 16:07:36 -07:00 committed by Adam Wathan
parent dff08348fd
commit ee6241a3b7

View File

@ -5,6 +5,9 @@ export default function() {
'.float-right': { float: 'right' },
'.float-left': { float: 'left' },
'.float-none': { float: 'none' },
'.clear-left': { clear: 'left' },
'.clear-right': { clear: 'right' },
'.clear-both': { clear: 'both' },
'.clearfix:after': {
content: '""',
display: 'table',