12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .content {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 100vw;
- height: 100vh;
- }
- .drawer {
- display: flex;
- flex-direction: column;
- width: 77vw;
- height: 100vh;
- }
- .drawer .drawer_1 {
- display: flex;
- justify-content: space-between;
- padding: 2vw;
- }
- .drawer .drawer_1 .left {
- flex-grow: 1;
- font-weight: bold;
- padding: 1vw 0;
- font-size: 16px;
- font-family: monospace;
- }
- .drawer .drawer_2 {
- flex-grow: 1;
- position: relative;
- padding: 0 2vw;
- }
- .drawer .drawer_2 .info {
- padding: 0 2vw;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- padding: 0 !important;
- }
|