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.

_utility.scss 461B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .u-mr-24 {
  2. margin-right: 24px;
  3. }
  4. .u-ml-32 {
  5. margin-left: pxToRem(32px);
  6. }
  7. .u-position-relative {
  8. position: relative;
  9. }
  10. .u-column {
  11. @include flex-column;
  12. }
  13. .u-display-none {
  14. display: none;
  15. }
  16. .u-superscript {
  17. font-size: pxToRem(14px);
  18. font-weight: medium;
  19. }
  20. .u-text-align-right {
  21. text-align: right;
  22. }
  23. .u-hide {
  24. width: 0;
  25. height: 0;
  26. visibility: hidden;
  27. display: none;
  28. position: fixed;
  29. top: -20px;
  30. right: -20px;
  31. z-index: -1;
  32. }