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

34 lines
578 B
SCSS
Raw Normal View History

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