Skip to content

Commit d9ac950

Browse files
AmitMYbrandyscarney
authored andcommitted
feat(rtl): add pull-left/right/start/end (#11214)
1 parent 65c250b commit d9ac950

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/components/app/app.scss

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,3 +332,30 @@ ion-footer {
332332
[text-capitalize] {
333333
text-transform: capitalize;
334334
}
335+
336+
// Float
337+
// --------------------------------------------------
338+
339+
[pull-left] {
340+
float: left;
341+
}
342+
343+
[pull-right] {
344+
float: right;
345+
}
346+
347+
[pull-start] {
348+
float: left;
349+
}
350+
351+
[pull-end] {
352+
float: right;
353+
}
354+
355+
[dir="rtl"] [pull-start] {
356+
float: right;
357+
}
358+
359+
[dir="rtl"] [pull-end] {
360+
float: left;
361+
}

0 commit comments

Comments
 (0)