mixins.scss 288 B

123456789101112131415161718
  1. @mixin clearfix {
  2. *zoom: 1;
  3. &:after,
  4. &:before {
  5. content: "";
  6. display: table;
  7. }
  8. &:after {
  9. clear: both;
  10. overflow: hidden;
  11. }
  12. }
  13. @mixin hide-text{
  14. text-indent: -999em;
  15. overflow: hidden;
  16. color: transparent;
  17. }