You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
642 B
32 lines
642 B
|
6 years ago
|
@import "~@/asset/style/variables.scss";
|
||
|
|
|
||
|
6 years ago
|
.router-main {
|
||
|
6 years ago
|
position: relative;
|
||
|
|
flex: 1;
|
||
|
|
overflow: hidden;
|
||
|
|
background-color: #f0f2f5;
|
||
|
|
|
||
|
6 years ago
|
> .scroll-container {
|
||
|
6 years ago
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
overflow-y: overlay;
|
||
|
|
overflow-x: inherit;
|
||
|
|
|
||
|
6 years ago
|
> .page-view {
|
||
|
6 years ago
|
margin: $page-view-margin;
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.back-to-top {
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
background-color: #f2f5f6;
|
||
|
|
box-shadow: 0 0 6px rgba(0, 0, 0, .12);
|
||
|
|
text-align: center;
|
||
|
|
line-height: 40px;
|
||
|
|
color: #1989fa;
|
||
|
|
}
|
||
|
|
}
|