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.

_helper.scss 240B

123456789101112131415161718
  1. //
  2. // Helper
  3. // helper classes for different cases
  4. //
  5. // Clearfix for sections that use float property
  6. .floatfix {
  7. &:before,
  8. &:after {
  9. content: '';
  10. display: table;
  11. }
  12. &:after {
  13. clear: both;
  14. }
  15. }