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

30 lines
514 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;
padding: var(--spacing-xlarge);
font-size: var(--font-small);
2020-05-08 19:02:01 +02:00
@media (max-width: $breakpoint-small) {
max-width: 100%;
padding: var(--spacing-medium);
flex-direction: column;
> * {
margin-bottom: var(--spacing-large);
}
2020-05-08 18:48:58 +02:00
}
}
.footer__section-title {
@extend .help;
font-weight: 300;
margin-bottom: var(--spacing-medium);
}
.footer__link {
@extend .button--link;
@extend .help;
}