add file manager

This commit is contained in:
Qing
2022-12-31 21:07:08 +08:00
parent b847ded828
commit 2dd95be90d
17 changed files with 5402 additions and 5872 deletions

View File

@@ -0,0 +1,27 @@
.file-manager-modal {
color: var(--text-color);
height: 90%;
width: 80%;
}
.file-manager {
overflow: auto;
border-radius: 8px;
}
.react-photo-album.react-photo-album--columns {
height: 80vh;
}
.react-photo-album--photo {
border-radius: 8px;
border: 1px solid transparent;
// transform-origin: 0 0;
transition: transform 0.25s, visibility 0.25s ease-in;
&:hover {
border: 1px solid var(--border-color);
transform: scale(1.01);
}
}