lbry-desktop/ui/scss/component/_footer.scss
infinite-persistence 5eae88b553
Fix footer in master
Since lbry.tv is going away, I tried not to touch the css file much so that the merge into `odysee` won't affect it. The side effect is that the links are now white instead of the regular link color.
2021-06-08 01:19:41 +08:00

69 lines
1.1 KiB
SCSS

.footer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 80%;
margin: auto;
padding: var(--spacing-xl);
font-size: var(--font-small);
@media (max-width: $breakpoint-small) {
max-width: 100%;
padding: var(--spacing-m);
align-items: flex-start;
}
}
.footer__links {
display: flex;
flex-direction: column;
.navigation-link {
font-size: var(--font-small);
}
.button__label {
color: var(--color-text-help);
}
.footer__link {
margin-left: 0;
}
@media (min-width: $breakpoint-small) {
flex-direction: row;
.footer__link {
margin-left: var(--spacing-m);
}
}
}
.footer__link {
margin-bottom: var(--spacing-s);
}
.footer__section {
margin-left: var(--spacing-xl);
&:not(:last-child) {
padding-right: var(--spacing-xl);
}
@media (max-width: $breakpoint-small) {
margin-left: var(--spacing-l);
}
}
.footer__section-title {
@extend .help;
//font-weight: 300;
margin-bottom: var(--spacing-m);
}
.footer__link {
@extend .button--link;
@extend .help;
}