cycat-project-website/_sass/bootstrap/mixins/_float.scss

15 lines
392 B
SCSS
Raw Normal View History

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