mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
fix: add hover effects to system message usernames
closes #411 closes #463
This commit is contained in:
parent
202a70b91f
commit
21cd3f4558
1 changed files with 9 additions and 0 deletions
|
@ -29,6 +29,15 @@ const SystemContent = styled.div`
|
|||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
|
||||
svg,
|
||||
span {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
span:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
`;
|
||||
|
||||
interface Props {
|
||||
|
|
Loading…
Reference in a new issue