|
@@ -54,12 +54,17 @@ export default {
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
|
+ @import '@/common/scss/base.scss';
|
|
|
.m-entry {
|
|
.m-entry {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: row;
|
|
flex-direction: row;
|
|
|
justify-content: center;
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
|
|
+ max-width: 750px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ background: $color-f;
|
|
|
|
|
+ color: $color-1;
|
|
|
}
|
|
}
|
|
|
.router-container {
|
|
.router-container {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -82,30 +87,10 @@ export default {
|
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
|
-webkit-overflow-scrolling: touch;
|
|
-webkit-overflow-scrolling: touch;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- .slide-right-enter-active,
|
|
|
|
|
- .slide-right-leave-active,
|
|
|
|
|
- .slide-left-enter-active,
|
|
|
|
|
- .slide-left-leave-active {
|
|
|
|
|
- transition: all 0.3s ease;
|
|
|
|
|
- position: absolute;
|
|
|
|
|
- left: 0;
|
|
|
|
|
- right: 0;
|
|
|
|
|
- top: 0;
|
|
|
|
|
- bottom: 0;
|
|
|
|
|
- background: #fff;
|
|
|
|
|
- pointer-events: none;
|
|
|
|
|
- }
|
|
|
|
|
- .slide-right-leave-to {
|
|
|
|
|
- transform: translate3d(-100%, 0, 0);
|
|
|
|
|
- }
|
|
|
|
|
- .slide-right-enter {
|
|
|
|
|
- transform: translate3d(100%, 0, 0);
|
|
|
|
|
- }
|
|
|
|
|
- .slide-left-enter {
|
|
|
|
|
- transform: translate3d(-100%, 0, 0);
|
|
|
|
|
- }
|
|
|
|
|
- .slide-left-leave-to {
|
|
|
|
|
- transform: translate3d(100%, 0, 0);
|
|
|
|
|
|
|
+ @media screen and (min-width: 750px) {
|
|
|
|
|
+ .m-entry {
|
|
|
|
|
+ border-left: 1px solid $color-6;
|
|
|
|
|
+ border-right: 1px solid $color-6;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|