3034f4ce6c
* bring in ody styles; modify; cleanup * workflow * workflow * v0.52.6-alpha.teststyles.1 * fix hook * v0.52.6-alpha.teststyles.2 * style fixes * fix pagination styling * v0.52.6-alpha.teststyles.3 * wallet icon was bad * restore deploy script * fixes * fix player close button * modal inputs * cleanup * cleanup * fix staked indicator * fix profile menu button skel delay * fix view-all-playlists hover * fix overlay buttons on collection page * fix header buttons
80 lines
1.3 KiB
SCSS
80 lines
1.3 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);
|
|
padding-left: var(--spacing-s);
|
|
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;
|
|
margin-bottom: 0;
|
|
.button {
|
|
.button__label {
|
|
color: rgba(var(--color-text-base), 0.8);
|
|
}
|
|
&:hover {
|
|
.button__label {
|
|
color: rgba(var(--color-text-base), 1);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|