mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 11:57:04 +08:00
33 lines
715 B
SCSS
33 lines
715 B
SCSS
.component_page_viewerpage{
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
|
|
.page_container{
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
> div{
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
> div, > span{
|
|
flex: 1;
|
|
display: flex;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
}
|
|
// loader
|
|
> span {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
.box {
|
|
background: white;
|
|
box-shadow: rgba(158, 163, 172, 0.3) 3px 3px 10px;
|
|
}
|
|
}
|
|
}
|