1234567891011121314151617181920 |
- .main {
- height: var(--twoHeight);
- background-color: var(--bgColor);
- font-size: var(--titleSize);
- }
- .main .one {
- text-align: center;
- margin: 0 0 10vw 0;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
|