I wanted to add Styling to the <Link>
tag in svelte routing but I couldn't.
I have tried to add a class in which there is some styling but it didn't work.
<Link to='/' class='link'></Link>
the class contains:
.link {
text-decoration: none;
}
Does anyone have a solution for this?