Files
web/apps/partner-sas/components/Menu/FooterMenu/footer-menu.module.css
Hrishikesh Vaipurkar c01f440651 Merged in feat/SW-3542-update-color-variables-to- (pull request #2970)
feat(SW-3542): Updated the color variables for MVP

Approved-by: Joakim Jäderberg
2025-10-17 09:22:03 +00:00

31 lines
477 B
CSS

.linksWrapper {
display: flex;
flex-direction: column;
gap: var(--Space-x2);
@media screen and (min-width: 768px) {
flex-direction: row;
justify-content: space-between;
}
}
.links {
display: flex;
flex-direction: column;
gap: var(--Space-x1);
@media screen and (min-width: 768px) {
flex-direction: row;
}
}
.link {
text-decoration: none;
color: var(--SAS-40);
&:hover {
color: var(--SAS-40);
text-decoration: underline;
}
}