1
0

prerelease changes

This commit is contained in:
Filip Rojek 2023-12-01 17:33:37 +01:00
parent 1dde1e505c
commit 7d1d56bb1a
2 changed files with 12 additions and 4 deletions

View File

@ -25,3 +25,9 @@ footer {
color: var(--clr-Murrey);
}
}
.footer-mobile {
display: none;
margin: 0 var(--container-size);
}

View File

@ -1,9 +1,6 @@
@media only screen and (min-width: 0px) and (max-width: 954px) {
nav {
flex-wrap: wrap;
position: absolute;
top: 0;
width: 100vw;
}
.nav-right {
display: none !important;
@ -44,7 +41,6 @@
main {
flex-direction: column;
align-items: center;
margin-top: 8rem !important;
}
main aside .info-wrapper img {
width: 50px;
@ -59,6 +55,9 @@
footer:not(.footer-mobile) {
display: none !important;
}
.footer-mobile {
display: flex !important;
}
}
@media only screen and (min-width: 955px) and (max-width: 1090px) {
@ -81,6 +80,9 @@
footer:not(.footer-mobile) {
display: none !important;
}
.footer-mobile {
display: flex !important;
}
}
@media only screen and (min-width: 1091px) and (max-width: 1499px) {