No Description
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 193B

1234567891011
  1. // stylelint-disable declaration-no-important
  2. @mixin float-left {
  3. float: left !important;
  4. }
  5. @mixin float-right {
  6. float: right !important;
  7. }
  8. @mixin float-none {
  9. float: none !important;
  10. }