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.

49 lines
804 B

5 years ago
@import "../../src/scss/variables.scss";
@import "../../src/scss/mixins.scss";
.component-footer {
5 years ago
//position: absolute;
display: flex;
5 years ago
padding: 10px 0;
text-align: center;
5 years ago
width: 100%;
5 years ago
bottom: 0;
5 years ago
background: $gray;
color: $white;
5 years ago
.menu {
5 years ago
display: block;
5 years ago
height: 100%;
width: 100%;
list-style: none;
margin: 0;
padding: 0;
.item {
5 years ago
display: block;
5 years ago
color: $white;
margin: auto 20px auto 0;
font-size: $font-12;
letter-spacing: 2px;
5 years ago
padding: 5px;
5 years ago
.label {
color: $white;
}
}
}
5 years ago
}
5 years ago
5 years ago
@media (min-width: map-get($grid-breakpoints, 'md')) {
.component-footer {
height: $footer-height;
.menu {
display: flex;
.item {
display: flex;
padding: 0;
}
}
}
5 years ago
}