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

81 lines
1.3 KiB
SCSS
Raw Normal View History

2020-05-08 18:48:58 +02:00
.footer {
display: flex;
2021-04-26 21:19:17 +02:00
flex-direction: column;
2020-05-08 18:48:58 +02:00
justify-content: center;
2021-04-26 21:19:17 +02:00
align-items: center;
2020-05-08 18:48:58 +02:00
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);
padding-left: var(--spacing-s);
2021-04-26 21:19:17 +02:00
align-items: flex-start;
2020-05-13 18:10:23 +02:00
}
}
2021-04-26 21:19:17 +02:00
.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;
margin-bottom: 0;
.button {
.button__label {
color: rgba(var(--color-text-base), 0.8);
}
&:hover {
.button__label {
color: rgba(var(--color-text-base), 1);
}
}
}
2021-04-26 21:19:17 +02:00
}
@media (min-width: $breakpoint-small) {
flex-direction: row;
.footer__link {
margin-left: var(--spacing-m);
}
}
}
.footer__link {
margin-bottom: var(--spacing-s);
}
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
&:not(:last-child) {
padding-right: 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;
2021-04-26 21:19:17 +02:00
//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;
}