You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
495 B
CSS

/* Footer */
.footer {
width: 100vw;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
background-color: #1a1a1a;
}
/* Footer Div First Child */
.footer div:first-child {
display: flex;
flex-wrap: wrap;
}
/* Small Screens */
@media screen and (max-width: 779px) {
/* Footer */
.footer {
align-items: center;
}
/* Footer Div First Child */
.footer div:first-child {
width: 260px;
}
}