fix: sigit links and outline
This commit is contained in:
parent
64c48835a4
commit
21caaa7009
@ -6,6 +6,8 @@
|
|||||||
background-color: $overlay-background-color;
|
background-color: $overlay-background-color;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
|
outline: none !important;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
gap: 15px;
|
gap: 15px;
|
||||||
@ -79,6 +81,7 @@
|
|||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
color: $text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.users {
|
.users {
|
||||||
|
@ -16,7 +16,11 @@ interface UserAvatarProps {
|
|||||||
*/
|
*/
|
||||||
export const UserAvatar = ({ pubkey, name, image }: UserAvatarProps) => {
|
export const UserAvatar = ({ pubkey, name, image }: UserAvatarProps) => {
|
||||||
return (
|
return (
|
||||||
<Link to={getProfileRoute(pubkey)} className={styles.container}>
|
<Link
|
||||||
|
to={getProfileRoute(pubkey)}
|
||||||
|
className={styles.container}
|
||||||
|
tabIndex={-1}
|
||||||
|
>
|
||||||
<AvatarIconButton
|
<AvatarIconButton
|
||||||
src={image}
|
src={image}
|
||||||
hexKey={pubkey}
|
hexKey={pubkey}
|
||||||
|
Loading…
Reference in New Issue
Block a user