Progress on moving color styles to Sass
This commit is contained in:
parent
942a2e7d68
commit
c424df5192
22 changed files with 340 additions and 235 deletions
|
@ -1,15 +1,7 @@
|
|||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
const loadMoreStyle = {
|
||||
display: 'block',
|
||||
color: '#616b86',
|
||||
textAlign: 'center',
|
||||
padding: '15px',
|
||||
textDecoration: 'none'
|
||||
};
|
||||
|
||||
const LoadMore = ({ onClick }) => (
|
||||
<a href='#' className='load-more' onClick={onClick} style={loadMoreStyle}>
|
||||
<a href='#' className='load-more' onClick={onClick}>
|
||||
<FormattedMessage id='status.load_more' defaultMessage='Load more' />
|
||||
</a>
|
||||
);
|
||||
|
|
Reference in a new issue