www-new/components/Link.module.css

12 lines
181 B
CSS
Raw Permalink Normal View History

2021-06-13 15:36:34 -04:00
.link {
color: var(--link);
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(--link-hover);
2021-06-13 15:36:34 -04:00
}