Files
web/components/TempDesignSystem/Link/link.module.css
2024-06-05 13:25:10 +02:00

42 lines
715 B
CSS

.link {
text-decoration: none;
}
.default {
font-family: var(--typography-Body-Regular-fontFamily);
}
.myPage {
color: var(--some-black-color, #000);
font-family: var(--ff-fira-sans);
font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.6%;
line-height: 2.4rem;
text-decoration: underline;
}
.sidebar {
align-items: center;
color: var(--some-text-color, #111);
display: flex;
font-size: 1.6rem;
font-weight: 400;
gap: 0.6rem;
line-height: 1.9rem;
position: relative;
}
.activeSidebar {
font-weight: 600;
}
.activeSidebar::before {
bottom: -0.4rem;
background-color: var(--some-text-color, #000);
content: "";
height: 0.2rem;
position: absolute;
width: 100%;
}