mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-16 11:15:31 +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;
|
||
|
}
|
||
|
}
|