Patches and Styling

This commit is contained in:
The_Grits 2017-04-06 10:40:46 -04:00 committed by GitHub
parent 94dec64045
commit 6dbf66d59d
2 changed files with 13 additions and 2 deletions

View file

@ -7,7 +7,9 @@ var FormattedMessage = require('react-intl').FormattedMessage;
var Page = require('../../../components/page/www/page.jsx');
var TitleBanner = require('../../components/title-banner/title-banner.jsx');
var FlexRow = require('../../components/flex-row/flex-row.jsx');
var TitleBanner = require('../../components/title-banner/title-banner.jsx');
var SubNavigation = require('../../components/subnavigation/subnavigation.jsx');
require('./download.scss');
var Download = React.createClass({
type: 'Download',
@ -57,7 +59,7 @@ var Download = React.createClass({
<FlexRow className="three-col-row">
<div class="installation column">
<h3><FormattedMessage id='download.airTitle' /></h3>
<p><FormattedMessage id='download.airBody' /></p>
<p><FormattedHTMLMessage id='download.airBody' /></p>
<p>
<FormattedMessage id='download.macOSX' /> -
{' '}<a href="http://get.adobe.com/air/">

View file

@ -49,4 +49,13 @@ $developer-spot: $ui-yellow;
}
}
}
.inner {
border-bottom: 1px solid $ui-border;
padding-bottom: 2rem;
#installation {
display: flex;
flex-wrap: wrap;
align-items: center;
}
}
}