Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_float.scss 392B

1234567891011121314
  1. // stylelint-disable declaration-no-important
  2. @mixin float-left() {
  3. float: left !important;
  4. @include deprecate("The `float-left` mixin", "v4.3.0", "v5");
  5. }
  6. @mixin float-right() {
  7. float: right !important;
  8. @include deprecate("The `float-right` mixin", "v4.3.0", "v5");
  9. }
  10. @mixin float-none() {
  11. float: none !important;
  12. @include deprecate("The `float-none` mixin", "v4.3.0", "v5");
  13. }