Make footer solution universal

This commit is contained in:
Emilia Allison 2022-09-29 23:30:38 -04:00
parent 04ddc30772
commit 32c169e957
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
2 changed files with 16 additions and 10 deletions

View File

@ -60,7 +60,6 @@ $color-dark: hsl(195, 47%, 7%);
place-self: center;
grid-area: main;
}
footer {
@extend .row;
flex-wrap: nowrap;
@ -71,15 +70,6 @@ $color-dark: hsl(195, 47%, 7%);
grid-column: 2 / span 1;
place-self: end center;
a {
display: table-cell;
height: 6vh;
width: 15%;
margin: 3%;
font-size: 6vh;
text-align: center;
}
}
}
@ -190,6 +180,11 @@ a {
/* Semantic */
footer {
position: fixed;
bottom: 0px;
}
/* ------------- */
/* ILIA Specific */
/* ------------- */

View File

@ -1,2 +1,13 @@
@import "ilia1";
footer {
a {
display: table-cell;
height: 6vh;
width: 15%;
margin: 3%;
font-size: 6vh;
text-align: center;
}
}