Cleaned more code, still untested.
This commit is contained in:
@ -34,7 +34,7 @@ import { PageBoundary } from '@components/page/Page';
|
||||
const FooterLink = (props) => {
|
||||
let { title, className } = props;
|
||||
return (
|
||||
<NavLink {...props} className={"c-footer__link"+(className?` ${className}`:``}>
|
||||
<NavLink {...props} className={"c-footer__link"+(className?` ${className}`:``)}>
|
||||
{ Language.get(`footer.links.${title}`) }
|
||||
</NavLink>
|
||||
);
|
||||
@ -51,7 +51,7 @@ class Footer extends React.Component {
|
||||
let { className } = this.props;
|
||||
|
||||
return (
|
||||
<footer {...this.props} className={"c-footer"+(className?` ${className}`:``}>
|
||||
<footer className={"c-footer"+(className?` ${className}`:``)}>
|
||||
<div className="c-footer__part">
|
||||
</div>
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
* Version:
|
||||
* 1.0.0 - 2018/05/16
|
||||
*/
|
||||
@import '@styles/global';
|
||||
@import '~@styles/global';
|
||||
|
||||
$c-footer--link-color: red;
|
||||
$c-footer--link-hover-color: blue;
|
||||
@ -22,7 +22,7 @@ $c-footer--link-hover-color: blue;
|
||||
padding-bottom: 10em;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background-image: url('@images/banners/palms.svg');
|
||||
background-image: url('~@assets/images/banners/palms.svg');
|
||||
background-size: cover;
|
||||
|
||||
&__inner {
|
||||
|
Reference in New Issue
Block a user