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 = () => (
<Block className={styles.footer}>
<Link padding="md" to={WELCOME_ADDRESS}>
<Link to={WELCOME_ADDRESS}>
Welcome
</Link>
<Link to={SAFELIST_ADDRESS}>

View File

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