Files
web/apps/partner-sas/components/Menu/FooterMenu/footer-menu.module.css
Hrishikesh Vaipurkar fd770ba6bb Merged in feat/SW-3577-ui-feedback-from-sas-call (pull request #3035)
feat(SW-3577): Updated UI after feedback

Approved-by: Anton Gunnarsson
2025-10-30 09:59:05 +00:00

40 lines
693 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;
}
}
.links .link {
text-decoration: none;
color: var(--SAS-40);
&:hover {
color: var(--SAS-40);
text-decoration: underline;
}
&:not(:last-child):after {
content: "·";
display: inline-flex;
font-size: var(--Title-Subtitle-md-Size);
line-height: 100%;
margin-left: var(--Space-x1);
text-decoration: none;
}
}