Files
marketplaces/src/app/components/footer/footer.component.scss

115 lines
1.7 KiB
SCSS
Raw Normal View History

:host {
2026-02-14 01:28:08 +04:00
display: block;
width: 100%;
2026-01-18 18:57:06 +04:00
margin-top: auto;
}
.app-footer {
background: var(--text-primary, #1e3c38);
color: #fff;
2026-01-18 18:57:06 +04:00
}
.app-footer__container {
width: 100%;
2026-01-18 18:57:06 +04:00
}
.app-footer__top {
2026-01-18 18:57:06 +04:00
display: grid;
grid-template-columns: 2fr repeat(3, minmax(160px, 1fr));
gap: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.15);
2026-01-18 18:57:06 +04:00
}
.app-footer__brand {
display: grid;
gap: 0.75rem;
2026-01-18 18:57:06 +04:00
p {
margin: 0;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
2026-01-18 18:57:06 +04:00
}
}
.app-footer__group {
2026-02-14 01:28:08 +04:00
h4 {
margin: 0 0 0.75rem;
font-size: 0.95rem;
color: #fff;
2026-02-14 01:28:08 +04:00
}
ul {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: 0.5rem;
}
2026-02-14 01:28:08 +04:00
a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
2026-02-14 01:28:08 +04:00
&:hover {
color: #fff;
2026-02-14 01:28:08 +04:00
}
&:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
border-radius: 2px;
}
2026-02-14 01:28:08 +04:00
}
}
.app-footer__payments {
2026-02-14 01:28:08 +04:00
display: flex;
gap: 0.5rem;
2026-02-14 01:28:08 +04:00
flex-wrap: wrap;
img {
border-radius: 4px;
background: #fff;
padding: 2px 6px;
2026-02-14 01:28:08 +04:00
}
}
.app-footer__bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
padding-top: 1rem;
padding-bottom: 0.5rem;
2026-02-14 01:28:08 +04:00
p {
margin: 0;
color: rgba(255, 255, 255, 0.7);
font-size: 0.85rem;
2026-02-14 01:28:08 +04:00
}
a {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
font-size: 0.85rem;
2026-02-14 01:28:08 +04:00
}
}
@media (max-width: 960px) {
.app-footer__top {
grid-template-columns: repeat(2, minmax(0, 1fr));
2026-02-14 01:28:08 +04:00
}
}
@media (max-width: 640px) {
.app-footer__top {
grid-template-columns: 1fr;
2026-02-14 01:28:08 +04:00
}
.app-footer__bottom {
flex-direction: column;
align-items: flex-start;
2026-02-14 01:28:08 +04:00
}
}