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.

_position.scss 374B

12345678910111213141516171819202122232425
  1. //
  2. // Position
  3. // modifier classes to be applied on an abosolute positioned element
  4. // use it next to .position-absolute class
  5. //
  6. @each $size, $value in $spacers {
  7. .top-#{$size} {
  8. top: $value;
  9. }
  10. .right-#{$size} {
  11. right: $value;
  12. }
  13. .bottom-#{$size} {
  14. bottom: $value;
  15. }
  16. .left-#{$size} {
  17. left: $value;
  18. }
  19. }
  20. .center {
  21. left: 50%;
  22. transform: translateX(-50%);
  23. }