Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

51 lines
683 B

  1. // Position
  2. .clearfix {
  3. @include clearfix();
  4. }
  5. .float-left {
  6. float: left !important;
  7. }
  8. .float-right {
  9. float: right !important;
  10. }
  11. .relative {
  12. position: relative !important;
  13. }
  14. .absolute {
  15. position: absolute !important;
  16. }
  17. .fixed {
  18. position: fixed !important;
  19. }
  20. .centered {
  21. display: block;
  22. float: none;
  23. margin-left: auto;
  24. margin-right: auto;
  25. }
  26. .flex-centered {
  27. align-items: center;
  28. display: flex;
  29. justify-content: center;
  30. }
  31. // Spacing
  32. @include margin-variant(0, 0);
  33. @include margin-variant(1, $unit-1);
  34. @include margin-variant(2, $unit-2);
  35. @include padding-variant(0, 0);
  36. @include padding-variant(1, $unit-1);
  37. @include padding-variant(2, $unit-2);