mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-06 06:46:00 +00:00
27 lines
469 B
SCSS
27 lines
469 B
SCSS
/*
|
|
|-------------------------------------------------------------
|
|
| FOOTER
|
|
|-------------------------------------------------------------
|
|
*/
|
|
footer {
|
|
@include defaultDecoration($page-accent);
|
|
@include flexLeft(space-around);
|
|
|
|
margin: 0 auto;
|
|
|
|
bottom: 0;
|
|
|
|
width: calc(100% - 1.4rem);
|
|
|
|
a {
|
|
margin: 0.5rem;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: $font-body;
|
|
|
|
&:hover {
|
|
color: $orange;
|
|
}
|
|
}
|
|
} |