mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 20:23:32 +08:00
29 lines
496 B
SCSS
29 lines
496 B
SCSS
.component_page_filespage{
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
.error{
|
|
cursor: pointer;
|
|
}
|
|
.container{
|
|
padding: 5px 0 20px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.page_container{
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
.scroll-y{
|
|
flex: 1;
|
|
overflow-y: scroll!important;
|
|
overflow-x: hidden!important;
|
|
-webkit-overflow-scrolling: touch;
|
|
> .container{
|
|
height: 100%;
|
|
}
|
|
}
|