47 lines
850 B
CSS
47 lines
850 B
CSS
@import './base.css';
|
|
#app{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
.global-modal-mask {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, .7);
|
|
}
|
|
|
|
.global-modal-content {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.global-modal.position-bottom .global-modal-content {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.global-modal.position-top .global-modal-content {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.global-modal.position-center .global-modal-content {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.vue-recycle-scroller__item-wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-flow: wrap;
|
|
}
|
|
.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view {
|
|
width: 42vw !important;
|
|
position: relative !important;
|
|
} |