mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
feat(rtl): add pull-left/right/start/end (#11214)
This commit is contained in:

committed by
Brandy Carney

parent
65c250be95
commit
d9ac950f17
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user