You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
638 B
37 lines
638 B
@import "../../src/scss/variables.scss";
|
|
@import "../../src/scss/mixins.scss";
|
|
|
|
.component-footer {
|
|
position: relative;
|
|
display: flex;
|
|
height: 250px;
|
|
background: $olive-dark;
|
|
padding: 40px 0;
|
|
|
|
.content {
|
|
display: block;
|
|
margin: 0 auto;
|
|
|
|
.logo {
|
|
display: block;
|
|
height: 50px;
|
|
margin: 10px auto 20px auto;
|
|
}
|
|
|
|
.copy,
|
|
.links {
|
|
display: block;
|
|
@include font-style($font-sans, 'regular', $font-18);
|
|
color: $white;
|
|
text-align: center;
|
|
padding: 0;
|
|
|
|
.link {
|
|
color: $white;
|
|
text-decoration: none;
|
|
padding: 0 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|