mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 10:56:31 +08:00
28 lines
524 B
SCSS
28 lines
524 B
SCSS
.filelist-item-appear{
|
|
opacity: 0;
|
|
transform: translateY(5px);
|
|
}
|
|
.filelist-item-appear.filelist-item-appear-active{
|
|
transition: all 0.2s ease-out;
|
|
transform: translateY(0px);
|
|
opacity: 1;
|
|
}
|
|
|
|
.component_filesystem{
|
|
height: 100%;
|
|
> div{
|
|
height: 100%;
|
|
.list{
|
|
clear: both;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.error{
|
|
font-size: 25px;
|
|
text-align: center;
|
|
font-weight: 100;
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
}
|