lbry-desktop/ui/scss/component/_footer.scss

34 lines
578 B
SCSS
Raw Normal View History

2020-05-08 12:48:58 -04:00
.footer {
display: flex;
justify-content: center;
max-width: 80%;
margin: auto;
2020-06-01 13:03:19 -04:00
padding: var(--spacing-xl);
2020-05-08 12:48:58 -04:00
font-size: var(--font-small);
2020-05-08 13:02:01 -04:00
@media (max-width: $breakpoint-small) {
max-width: 100%;
2020-06-01 13:03:19 -04:00
padding: var(--spacing-m);
2020-05-08 13:02:01 -04:00
flex-direction: column;
2020-05-13 12:10:23 -04:00
}
}
.footer__section {
2020-06-01 13:03:19 -04:00
margin-left: var(--spacing-xl);
2020-05-13 12:10:23 -04:00
@media (max-width: $breakpoint-small) {
2020-06-01 13:03:19 -04:00
margin-left: var(--spacing-l);
2020-05-08 12:48:58 -04:00
}
}
.footer__section-title {
@extend .help;
font-weight: 300;
2020-06-01 13:03:19 -04:00
margin-bottom: var(--spacing-m);
2020-05-08 12:48:58 -04:00
}
.footer__link {
@extend .button--link;
@extend .help;
}