hswro_org/_sass/bootstrap/mixins/_float.scss

15 lines
392 B
SCSS
Raw Normal View History

2018-12-09 07:21:01 +00:00
// stylelint-disable declaration-no-important
2020-08-23 10:01:06 +00:00
@mixin float-left() {
2018-12-09 07:21:01 +00:00
float: left !important;
2020-08-23 10:01:06 +00:00
@include deprecate("The `float-left` mixin", "v4.3.0", "v5");
2018-12-09 07:21:01 +00:00
}
2020-08-23 10:01:06 +00:00
@mixin float-right() {
2018-12-09 07:21:01 +00:00
float: right !important;
2020-08-23 10:01:06 +00:00
@include deprecate("The `float-right` mixin", "v4.3.0", "v5");
2018-12-09 07:21:01 +00:00
}
2020-08-23 10:01:06 +00:00
@mixin float-none() {
2018-12-09 07:21:01 +00:00
float: none !important;
2020-08-23 10:01:06 +00:00
@include deprecate("The `float-none` mixin", "v4.3.0", "v5");
2018-12-09 07:21:01 +00:00
}