mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
49 lines
1.3 KiB
CSS
49 lines
1.3 KiB
CSS
.component_page_filespage {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: auto;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
align-self: flex-start;
|
|
background: var(--bg-color);
|
|
padding-top: 20px;
|
|
}
|
|
|
|
/* .component_page_filespage .error { */
|
|
/* cursor: pointer; */
|
|
/* } */
|
|
/* .component_page_filespage .container { */
|
|
/* padding: 5px 0 20px 0; */
|
|
/* box-sizing: border-box; */
|
|
/* } */
|
|
/* .component_page_filespage .page_container, .component_page_filespage .selectablegroup { */
|
|
/* flex: 1; */
|
|
/* display: flex; */
|
|
/* overflow: hidden; */
|
|
/* } */
|
|
/* .component_page_filespage .selectablegroup { */
|
|
/* overflow: hidden !important; */
|
|
/* } */
|
|
/* .component_page_filespage .selectablegroup > div[style] span { */
|
|
/* border: 1px dashed var(--light) !important; */
|
|
/* } */
|
|
/* .component_page_filespage .infinite_scroll_loading { */
|
|
/* text-align: center; */
|
|
/* } */
|
|
/* .component_page_filespage .infinite_scroll_loading .component_loader { */
|
|
/* margin-top: -50px; */
|
|
/* } */
|
|
/* .component_page_filespage .infinite_scroll_loading .component_loader svg { */
|
|
/* height: 40px; */
|
|
/* } */
|
|
|
|
.scroll-y {
|
|
flex: 1;
|
|
overflow-y: scroll !important;
|
|
overflow-x: hidden !important;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
/* .scroll-y > .container { */
|
|
/* height: 100%; */
|
|
/* } */
|