index.scss 783 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import '../../styles//utils.scss';
  2. .base-layout-container {
  3. height: 100vh;
  4. background-image: url('../../assets/bg.png');
  5. background-repeat: no-repeat;
  6. background-size: cover;
  7. background-position: top center;
  8. header {
  9. width: 100%;
  10. height: 94px;
  11. height: px2rem(94px);
  12. background: transparent;
  13. background-image: url('../../assets/header.png');
  14. background-repeat: no-repeat;
  15. background-size: contain;
  16. position: fixed;
  17. top: 0;
  18. z-index: 1;
  19. .back-to-home {
  20. position: absolute;
  21. width: px2rem(600px);
  22. cursor: pointer;
  23. height: 100%;
  24. left: 50%;
  25. transform: translateX(-50%);
  26. }
  27. }
  28. main {
  29. display: flex;
  30. flex-direction: column;
  31. min-height: calc(100vh);
  32. position: relative;
  33. }
  34. }