Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_float.scss « mixins « scss « bootstrap « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b376a2580c8821ceceb09fc4ee1f274130510f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// stylelint-disable declaration-no-important

@mixin float-left() {
  float: left !important;
  @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
}
@mixin float-right() {
  float: right !important;
  @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
}
@mixin float-none() {
  float: none !important;
  @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
}