.root { nav { display: flex; gap: 32px; .link { cursor: pointer; padding: 16px; text-decoration: none; border-bottom: 1px solid transparent; &:hover { border-bottom: 1px solid black; } &.active { color: black; border-bottom: 1px solid black; } } } .content { margin-top: 24px; } }