added simple file modal toggle

This commit is contained in:
[poww10s]
2020-11-27 02:46:02 -05:00
parent ab92ba7af6
commit 9cd6b4899d
5 changed files with 66 additions and 24 deletions
+24
View File
@@ -0,0 +1,24 @@
.dropzone-container {
background: white;
padding: 0.95em;
position: fixed;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: calc(7.5em);
box-sizing: border-box;
width: 14em;
z-index: 100;
border: 0.09em solid slategray;
border-radius: 6px;
}
.show {
display: flex;
}
.hide {
display: none;
}