Skip to content

Commit

Permalink
feat(rtl): add pull-left/right/start/end (#11214)
Browse files Browse the repository at this point in the history
  • Loading branch information
AmitMY authored and brandyscarney committed Apr 13, 2017
1 parent 65c250b commit d9ac950
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/components/app/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -332,3 +332,30 @@ ion-footer {
[text-capitalize] {
text-transform: capitalize;
}

// Float
// --------------------------------------------------

[pull-left] {
float: left;
}

[pull-right] {
float: right;
}

[pull-start] {
float: left;
}

[pull-end] {
float: right;
}

[dir="rtl"] [pull-start] {
float: right;
}

[dir="rtl"] [pull-end] {
float: left;
}

0 comments on commit d9ac950

Please sign in to comment.