Changed location of file upload overlay

Этот коммит содержится в:
Reed Garmsen
2015-08-13 12:07:32 -07:00
родитель afe028ae3a
Коммит 912ca8e8dd
4 изменённых файлов: 28 добавлений и 13 удалений

Просмотреть файл

@@ -0,0 +1,16 @@
// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
// See License.txt for license information.
module.exports = React.createClass({
displayName: 'FileUploadOverlay',
render: function() {
return (
<div className='center-file-overlay invisible'>
<div>
<i className='fa fa-upload'></i>
<span>Drop a file to upload it.</span>
</div>
</div>
);
}
});