source: src/FinkiChattery/FinkiChattery.Identity/wwwroot/lib/bootstrap/scss/mixins/_float.scss@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 392 bytes
Line 
1// stylelint-disable declaration-no-important
2
3@mixin float-left() {
4 float: left !important;
5 @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
6}
7@mixin float-right() {
8 float: right !important;
9 @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
10}
11@mixin float-none() {
12 float: none !important;
13 @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
14}
Note: See TracBrowser for help on using the repository browser.