diff --git a/src/components/Widgets/ImageControl.js b/src/components/Widgets/ImageControl.js index f0c5ee06..6753f91d 100644 --- a/src/components/Widgets/ImageControl.js +++ b/src/components/Widgets/ImageControl.js @@ -98,14 +98,15 @@ const styles = { display: 'none' }, imageUpload: { - backgroundColor: '#3ab7a5', + backgroundColor: '#fff', textAlign: 'center', - color: '#fff', - padding: '10px', + color: '#888', + padding: '20px', display: 'block', margin: '10px', - boxShadow: '0px 9px 8px -5px rgba(0,0,0,0.75)', - cursor: 'pointer' + border: '1px dashed #eee', + cursor: 'pointer', + fontSize: '12px' } }; diff --git a/src/index.css b/src/index.css index a2d11d46..af9ba209 100644 --- a/src/index.css +++ b/src/index.css @@ -42,3 +42,15 @@ h1{ padding-bottom: 15px; font-size: 25px; } +input{ + width:100%; + padding:3px; +} +button{ + border: 1px solid #3ab7a5; + padding: 3px 20px; + font-size: 12px; + line-height: 18px; + background-color:#fff; + cursor: pointer; +} \ No newline at end of file