www-new/components/Link.module.css

12 lines
197 B
CSS
Raw Normal View History

2021-06-13 15:36:34 -04:00
.link {
color: var(--primary-accent);
2021-06-13 15:36:34 -04:00
transition-duration: 0.3s;
text-decoration: none;
white-space: normal;
overflow-wrap: anywhere;
2021-06-13 15:36:34 -04:00
}
.link:hover {
color: var(--secondary-accent);
2021-06-13 15:36:34 -04:00
}