wiki/_sass/_footer.scss

28 lines
374 B
SCSS

// フッタ
footer {
background: $footer-background;
color: $footer-text-color;
padding: 1em 0;
text-align: center;
a {
text-decoration: underline;
&:link,
&:visited,
&:hover,
&:focus,
&:active {
color: $footer-text-color;
}
}
> div.menu {
display: none;
@include media-mobile {
display: block;
}
}
}