Add color to links in info inputs

This commit is contained in:
Bogdan
2023-11-27 03:02:03 +02:00
parent 81e9c29d54
commit b66a85269f
2 changed files with 18 additions and 1 deletions
@@ -0,0 +1,13 @@
.message {
composes: alert from '~Components/Alert.css';
a {
color: var(--linkColor);
text-decoration: none;
&:hover {
color: var(--linkHoverColor);
text-decoration: underline;
}
}
}