Add beginning of the file manager

This commit is contained in:
Dane Everitt 2018-08-03 22:32:01 -07:00
parent ce77ab21b3
commit f1ec968f38
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 147 additions and 6 deletions

View file

@ -0,0 +1,28 @@
.filemanager {
& > .header {
@apply .flex .text-sm .pb-4 .font-bold .border-b .border-grey-light .mb-3;
& > div {
@apply .pr-4;
}
}
& > .row {
@apply .flex .text-sm .py-3 .text-sm .rounded .cursor-pointer .border .border-transparent;
& > div {
@apply .pr-4;
}
&:hover {
@apply .bg-grey-lightest .border-blue-light .text-blue-dark;
}
& > .icon {
@apply .w-8 .text-center;
& > svg {
@apply .h-4;
}
}
}
}