Making improvements to the layout on mobile

This commit is contained in:
Jonny Barnes 2019-03-24 18:16:06 +00:00
parent 4a3ec5a0a5
commit 758fc90634
7 changed files with 30 additions and 2 deletions

View file

@ -3,3 +3,9 @@
.personal-bio {
width: $mainWidth;
}
@media screen and (max-width: $mainWidth) {
.personal-bio {
width: 95vw;
}
}

View file

@ -20,3 +20,19 @@ footer {
margin-bottom: 0;
}
}
@media screen and (max-width: $mainWidth) {
footer {
img {
width: 95%;
}
form {
width: 95vw;
}
select {
width: 90vw;
}
}
}

View file

@ -8,3 +8,9 @@
list-style-type: none;
width: $mainWidth;
}
@media screen and (max-width: $mainWidth) {
.pagination {
width: 95vw;
}
}