123456789101112131415161718192021222324252627282930313233343536 |
- @import '../../styles//utils.scss';
- .base-layout-container {
- height: 100vh;
- background-image: url('../../assets/bg.png');
- background-repeat: no-repeat;
- background-size: cover;
- background-position: top center;
- header {
- width: 100%;
- height: 94px;
- height: px2rem(94px);
- background: transparent;
- background-image: url('../../assets/header.png');
- background-repeat: no-repeat;
- background-size: contain;
- position: fixed;
- top: 0;
- z-index: 1;
- .back-to-home {
- position: absolute;
- width: px2rem(600px);
- cursor: pointer;
- height: 100%;
- left: 50%;
- transform: translateX(-50%);
- }
- }
- main {
- display: flex;
- flex-direction: column;
- min-height: calc(100vh);
- position: relative;
- }
- }
|