File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
tests/plugins/__snapshots__ Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -684,6 +684,8 @@ export let corePlugins = {
684
684
685
685
float : ( { addUtilities } ) => {
686
686
addUtilities ( {
687
+ '.float-start' : { float : 'inline-start' } ,
688
+ '.float-end' : { float : 'inline-end' } ,
687
689
'.float-right' : { float : 'right' } ,
688
690
'.float-left' : { float : 'left' } ,
689
691
'.float-none' : { float : 'none' } ,
@@ -692,6 +694,8 @@ export let corePlugins = {
692
694
693
695
clear : ( { addUtilities } ) => {
694
696
addUtilities ( {
697
+ '.clear-start' : { clear : 'inline-start' } ,
698
+ '.clear-end' : { clear : 'inline-end' } ,
695
699
'.clear-left' : { clear : 'left' } ,
696
700
'.clear-right' : { clear : 'right' } ,
697
701
'.clear-both' : { clear : 'both' } ,
Original file line number Diff line number Diff line change 2
2
3
3
exports [` should test the 'clear' plugin 1` ] = `
4
4
"
5
+ .clear-start {
6
+ clear : inline - start ;
7
+ }
8
+
9
+ .clear-end {
10
+ clear : inline - end ;
11
+ }
12
+
5
13
.clear-left {
6
14
clear : left ;
7
15
}
Original file line number Diff line number Diff line change 2
2
3
3
exports [` should test the 'float' plugin 1` ] = `
4
4
"
5
+ .float-start {
6
+ float : inline - start ;
7
+ }
8
+
9
+ .float-end {
10
+ float : inline - end ;
11
+ }
12
+
5
13
.float-right {
6
14
float : right ;
7
15
}
You can’t perform that action at this time.
0 commit comments