_alert.scss
6 years ago
_background-variant.scss
6 years ago
_badge.scss
6 years ago
_border-radius.scss
6 years ago
_box-shadow.scss
6 years ago
_breakpoints.scss
6 years ago
_buttons.scss
6 years ago
_caret.scss
6 years ago
_clearfix.scss
6 years ago
_deprecate.scss
6 years ago
_float.scss
6 years ago
_forms.scss
6 years ago
_gradients.scss
6 years ago
_grid-framework.scss
6 years ago
_grid.scss
6 years ago
_hover.scss
6 years ago
_image.scss
6 years ago
_list-group.scss
6 years ago
_lists.scss
6 years ago
_nav-divider.scss
6 years ago
_pagination.scss
6 years ago
_reset-text.scss
6 years ago
_resize.scss
6 years ago
_screen-reader.scss
6 years ago
_size.scss
6 years ago
_table-row.scss
6 years ago
_text-emphasis.scss
6 years ago
_text-hide.scss
6 years ago
_text-truncate.scss
6 years ago
_transition.scss
6 years ago
_visibility.scss
6 years ago
_float.scss
15 lines
| 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 | } |
| 15 |