Make the upload button clickable in Firefox

This commit is contained in:
Timothy Farrell 2017-12-31 22:11:04 -06:00
parent 2f7cf1830f
commit 2ba3db7548

View File

@ -69,7 +69,7 @@ export function AllImagesView(vm, params, key, context) {
}
return [
el('button', [el('label', { for: 'uploadButton' }, 'Upload')]),
uploadButton([el('label', { for: 'uploadButton', style: CLICKABLE }, 'Upload')]),
el('input', {
id: 'uploadButton',
name: 'uploadButton',
@ -207,6 +207,13 @@ const trashButtonContainer = styled(
CLICKABLE
);
const uploadButton = styled(
{
marginRight: '1em'
},
CLICKABLE
);
const scrollView = styled({
overflow: 'scroll'
});