_position.scss 387 B

123456789101112131415161718192021
  1. .position-static {
  2. position: static !important;
  3. }
  4. .position-relative {
  5. position: relative !important;
  6. }
  7. .position-absolute {
  8. position: absolute !important;
  9. }
  10. .position-fixed {
  11. position: fixed !important;
  12. }
  13. .position-sticky {
  14. position: -webkit-sticky !important;
  15. position: sticky !important;
  16. }
  17. @media(max-width:1440px){
  18. .position-lg-relative {
  19. position: relative !important;
  20. }
  21. }