mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-22 08:16:04 +01:00
38 lines
690 B
SCSS
38 lines
690 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;
|
|
}
|
|
|
|
.infinite_scroll_loading{
|
|
text-align: center;
|
|
.component_loader{
|
|
margin-top: -50px;
|
|
svg{
|
|
height: 40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.scroll-y{
|
|
flex: 1;
|
|
overflow-y: scroll!important;
|
|
overflow-x: hidden!important;
|
|
-webkit-overflow-scrolling: touch;
|
|
> .container{
|
|
height: 100%;
|
|
}
|
|
}
|