Added bootstrap package

This commit is contained in:
vjrj 2017-11-23 19:02:54 +01:00
parent 2b3c9a5868
commit d7664cbf84
10 changed files with 62 additions and 61 deletions

View file

@ -16,7 +16,7 @@ const Footer = (props) => {
return (
<div className="Footer">
<Grid>
<p className="pull-left">&copy; Copyleft {copyrightYear()} {t('OrgNameFull')}</p>
<p className="pull-left">&copy; Copyleft {copyrightYear()} <a href="https://comunes.org/">{t('OrgNameFull')}</a></p>
<ul className="pull-right">
<li><Link to="/terms"> {t('Términos')}<span className="hidden-xs"> {t('de Servicio')}</span></Link></li>
<li><Link to="/privacy">{t('Política')}<span className="hidden-xs"> {t('de Privacidad')}</span></Link></li>

View file

@ -31,7 +31,7 @@ body {
ul li {
float: left;
&:first-child {
&:first-child, &:nth-child(2) {
margin-right: 15px;
}
@ -49,7 +49,7 @@ body {
}
@include breakpoint(tablet) {
.Footer ul li:first-child {
.Footer ul li:first-child, .Footer ul li:nth-child(2) {
margin-right: 30px;
}
}