We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef9717 commit 9129defCopy full SHA for 9129def
src/corePlugins.js
@@ -690,6 +690,8 @@ export let corePlugins = {
690
691
float: ({ addUtilities }) => {
692
addUtilities({
693
+ '.float-start': { float: 'inline-start' },
694
+ '.float-end': { float: 'inline-end' },
695
'.float-right': { float: 'right' },
696
'.float-left': { float: 'left' },
697
'.float-none': { float: 'none' },
@@ -698,6 +700,8 @@ export let corePlugins = {
698
700
699
701
clear: ({ addUtilities }) => {
702
703
+ '.clear-start': { clear: 'inline-start' },
704
+ '.clear-end': { clear: 'inline-end' },
705
'.clear-left': { clear: 'left' },
706
'.clear-right': { clear: 'right' },
707
'.clear-both': { clear: 'both' },
0 commit comments