mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
refactor(app): rename pull- to float- to avoid confusion with col
This commit is contained in:
@ -415,34 +415,34 @@ ion-footer {
|
||||
$infix: breakpoint-infix($breakpoint, $screen-breakpoints);
|
||||
|
||||
@include media-breakpoint-up($breakpoint, $screen-breakpoints) {
|
||||
// Provide `[pull-{bp}]` attributes for floating the element based
|
||||
// Provide `[float-{bp}]` attributes for floating the element based
|
||||
// on the breakpoint
|
||||
[pull#{$infix}-left] {
|
||||
[float#{$infix}-left] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
[pull#{$infix}-right] {
|
||||
[float#{$infix}-right] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
[pull#{$infix}-start] {
|
||||
[float#{$infix}-start] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: left !important;
|
||||
}
|
||||
|
||||
[pull#{$infix}-end] {
|
||||
[float#{$infix}-end] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
[dir="rtl"] [pull#{$infix}-start] {
|
||||
[dir="rtl"] [float#{$infix}-start] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: right !important;
|
||||
}
|
||||
|
||||
[dir="rtl"] [pull#{$infix}-end] {
|
||||
[dir="rtl"] [float#{$infix}-end] {
|
||||
// scss-lint:disable ImportantRule
|
||||
float: left !important;
|
||||
}
|
||||
|
Reference in New Issue
Block a user