mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-14 20:35:32 +01:00
28 lines
496 B
SCSS
28 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%;
|
|
}
|
|
}
|