Files
NaliiaWebsite/src/components/footer/footer.css

47 lines
833 B
CSS

.footer-container {
height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 64px;
box-sizing: border-box;
background-color: var(--dark-gray);
border-top: 1px solid rgb(255, 255, 255, 0.2);
}
.logo-and-copyright {
display: flex;
align-items: center;
gap: var(--space-lg-24px);
}
.divider {
width: 1px;
height: 40px;
background-color: rgba(255, 255, 255, 0.2);
}
.logo-naliia-footer {
height: 44px;
width: auto;
}
.social-media {
display: flex;
flex-direction: column;
gap: var(--space-sm-8px);
}
.icons-social-media {
display: flex;
gap: var(--space-lg-24px);
}
.social-media-link {
color: white;
text-decoration: none;
display: flex;
align-items: center;
justify-content: center;
}