mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 18:26:05 +00:00
25 lines
367 B
SCSS
25 lines
367 B
SCSS
.footer {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
background-color: $black;
|
|
color: $white;
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-size: 0.8rem;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
.footer {
|
|
background-color: $white;
|
|
color: $black;
|
|
}
|
|
} |