mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
Fix pointer style for badges.
This commit is contained in:
parent
a1cb72046c
commit
bde8b58095
2 changed files with 6 additions and 1 deletions
|
@ -124,7 +124,6 @@
|
|||
img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -319,6 +319,9 @@ export const UserProfile = observer(
|
|||
}>
|
||||
<img
|
||||
src="/assets/badges/translator.svg"
|
||||
style={{
|
||||
cursor: "pointer",
|
||||
}}
|
||||
onClick={() => {
|
||||
window.open(
|
||||
"https://weblate.insrt.uk/projects/revolt/web-app/",
|
||||
|
@ -348,6 +351,9 @@ export const UserProfile = observer(
|
|||
<Money
|
||||
size={32}
|
||||
color="#efab44"
|
||||
style={{
|
||||
cursor: "pointer",
|
||||
}}
|
||||
onClick={() => {
|
||||
window.open(
|
||||
"https://insrt.uk/donate",
|
||||
|
|
Loading…
Reference in a new issue