11 lines
267 B
CSS
11 lines
267 B
CSS
|
.anchorUnderlineOnHover[href*="//discord.com/channels"]::before {
|
||
|
content: "➜";
|
||
|
color: var(--lavender);
|
||
|
padding-right: 0.5ch;
|
||
|
}
|
||
|
|
||
|
.anchorUnderlineOnHover[href*="//discord.com/channels"]:hover {
|
||
|
text-decoration: none !important;
|
||
|
border-bottom: 1px solid;
|
||
|
}
|