diff options
author | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-04-28 01:11:34 +0200 |
---|---|---|
committer | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-04-28 01:11:34 +0200 |
commit | b687d25e0d94992aca66d7e322643cda705db7c1 (patch) | |
tree | 51507985040511f46058f992731e6a3ee75d5e99 /frontend/src/app/_elements/form-dataset/form-dataset.component.css | |
parent | 9d5603c5e9b5b2a0d71cd72401fb7e0d91dc74c7 (diff) |
Sredjen upload csv-a #116
Diffstat (limited to 'frontend/src/app/_elements/form-dataset/form-dataset.component.css')
-rw-r--r-- | frontend/src/app/_elements/form-dataset/form-dataset.component.css | 40 |
1 files changed, 33 insertions, 7 deletions
diff --git a/frontend/src/app/_elements/form-dataset/form-dataset.component.css b/frontend/src/app/_elements/form-dataset/form-dataset.component.css index 66be7f7d..56eb3cef 100644 --- a/frontend/src/app/_elements/form-dataset/form-dataset.component.css +++ b/frontend/src/app/_elements/form-dataset/form-dataset.component.css @@ -4,21 +4,47 @@ position: relative; } - .file-container{ + border: 4px solid transparent; + position: relative; margin-left: 3%; - margin-top: 3%; - margin-bottom: -50%; + margin-top: 3rem; width: 94%; - height: 500px; + min-height: 500px; +} +.fileButton{ + position: absolute; + margin-top: -3rem; + display: flex; + flex-direction: row; + align-items: center; +} +.fileButton label{ + margin-left: 10px; +} +.dottedClass +{ border: 4px dotted white; border-radius: 25px; } -.file-container .file { - opacity: 0; - padding: 5rem; + +.hidden{ + visibility: hidden; +} + +.file { + position: absolute; width: 100%; height: 100%; + opacity: 0; +} + +.file input{ + + border-radius: 4px; + margin-top: -15px; + width: 100%; + height: 100%; } .icon-display { |