-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(upload): add drag and drop for uploads
- Loading branch information
Christie Baker
authored and
Christie Baker
committed
Dec 5, 2018
1 parent
6fc29c3
commit a45ad71
Showing
5 changed files
with
119 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.file-drop { | ||
color: #464a4c; | ||
text-align: center; | ||
border: 1px dashed rgba(0, 0, 0, .15); | ||
width: 8rem; | ||
min-width: fit-content; | ||
height: 8rem; | ||
padding: 3rem 0; | ||
} | ||
|
||
.file-drop-active { | ||
border: 1px solid #3960ed; | ||
border-width: 2px; | ||
background-color: #ebebeb; | ||
border-radius: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters