summaryrefslogtreecommitdiffstats
path: root/web/react/components/file_upload_overlay.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/file_upload_overlay.jsx')
-rw-r--r--web/react/components/file_upload_overlay.jsx22
1 files changed, 11 insertions, 11 deletions
diff --git a/web/react/components/file_upload_overlay.jsx b/web/react/components/file_upload_overlay.jsx
index 5f8ef0b0c..a82f02af1 100644
--- a/web/react/components/file_upload_overlay.jsx
+++ b/web/react/components/file_upload_overlay.jsx
@@ -2,15 +2,15 @@
// 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>
- );
- }
+ displayName: 'FileUploadOverlay',
+ render: function() {
+ return (
+ <div className='file-overlay center-file-overlay invisible'>
+ <div>
+ <i className='fa fa-upload'></i>
+ <span>Drop a file to upload it.</span>
+ </div>
+ </div>
+ );
+ }
});