46 lines
673 B
SCSS
46 lines
673 B
SCSS
.footer-buffer {
|
|
height: 2em;
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
border-top: 1px solid gray;
|
|
border-color: rgb(84, 91, 94) !important;
|
|
}
|
|
|
|
.footer-container {
|
|
padding: 2em 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.footer-left div {
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
.locale-switch-large {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.l {
|
|
margin-right: 1em;
|
|
}
|
|
.r {
|
|
a {
|
|
margin-right: .2em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.locale-switch-short {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: $sm-breakpoint) {
|
|
.locale-switch-large {
|
|
display: none;
|
|
}
|
|
.locale-switch-short {
|
|
display: block;
|
|
}
|
|
}
|