1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-28 08:37:59 +02:00

Merge pull request #75 from ascribe/AD-1506-cyland-loan-later-button

Fix PR feedback for Cyland loan button
This commit is contained in:
Brett Sun 2015-12-16 15:46:47 +01:00
commit 875e98dd3b
2 changed files with 13 additions and 7 deletions

View File

@ -163,16 +163,12 @@ let CylandRegisterPiece = React.createClass({
const loanHeading = getLangText('Loan to Cyland archive');
const loanButtons = (
<div>
<div
className='col-xs-6 pull-left'
style={{padding: '0 2px 2px 0'}}>
<div className='col-xs-6 ascribe-form-btn-container-left'>
<button className='btn btn-default btn-wide'>
{getLangText('Loan to archive')}
</button>
</div>
<div
className='col-xs-6 pull-right'
style={{padding: '0 0 2px 2px'}}>
<div className='col-xs-6 ascribe-form-btn-container-right'>
<LinkContainer to='/collection'>
<button
type='button'

View File

@ -23,4 +23,14 @@
@media (max-width: 550px) {
width: 100%;
}
}
}
.ascribe-form-btn-container-left {
float: left;
padding: 0 2px 2px 0;
}
.ascribe-form-btn-container-right {
float: right;
padding: 0 0 2px 2px;
}