14 lines
221 B
SCSS
14 lines
221 B
SCSS
.footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
font-size: 1.6rem;
|
|
line-height: 2rem;
|
|
margin-bottom: 1rem;
|
|
@media only screen and (max-width: 768px) {
|
|
font-size: 1.5rem;
|
|
}
|
|
a {
|
|
color: $link-color;
|
|
}
|
|
}
|