diff --git a/js/components/ascribe_buttons/acl_information_button.js b/js/components/ascribe_buttons/acl_information_button.js index bea9808e..d0246ef7 100644 --- a/js/components/ascribe_buttons/acl_information_button.js +++ b/js/components/ascribe_buttons/acl_information_button.js @@ -15,17 +15,24 @@ let AclInformationButton = React.createClass({ let rows = []; let titleStyle = { color: '#02B6A3', - fontSize: '11px' + fontSize: '11px', + lineHeight: '5px' }; let infoStyle = { color: '#333333', - fontSize: '11px' + fontSize: '11px', + lineHeight: '5px' }; let exampleStyle = { color: '#B2B2B2', - fontSize: '11px' + fontSize: '11px', + lineHeight: '5px' + }; + + let paragraphStyle = { + margin: '0.1em' }; @@ -60,8 +67,8 @@ let AclInformationButton = React.createClass({ let createJSXTextSnippet = function(title, info, example){ console.log('creating text snippets'); - return (

{title} - {info}

+ return (

{title} + {info}
{example}

); };