21 lines
319 B
SCSS
21 lines
319 B
SCSS
.footer {
|
|
@include grid(false, 1fr);
|
|
@include stretch;
|
|
padding: 3rem 0;
|
|
background: $light-black;
|
|
}
|
|
|
|
.footer-inner {
|
|
@include stretch;
|
|
@include flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
p {
|
|
font-size: 1.5rem;
|
|
color: $base-white;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
}
|