Improved footer's layout

This commit is contained in:
apanizo 2018-08-30 10:45:14 +02:00
parent 2f19ceb024
commit fa9412033c
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import styles from './index.scss'
const Footer = () => ( const Footer = () => (
<Block className={styles.footer}> <Block className={styles.footer}>
<Link padding="md" to={WELCOME_ADDRESS}> <Link to={WELCOME_ADDRESS}>
Welcome Welcome
</Link> </Link>
<Link to={SAFELIST_ADDRESS}> <Link to={SAFELIST_ADDRESS}>

View File

@ -1,7 +1,10 @@
.footer { .footer {
display: grid; display: grid;
grid-template-columns: 1fr auto auto; grid-template-columns: 100px 100px 1fr;
justify-items: end; grid-template-rows: 40px;
justify-items: center;
align-items: center;
border: solid 0.5px $border;
} }
@media only screen and (max-width: $(screenXs)px) { @media only screen and (max-width: $(screenXs)px) {