Skip to content

Commit 06fd1af

Browse files
outline for focus visible
1 parent 1615269 commit 06fd1af

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/components/streamFeed/StreamProfilePicture.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { FC, useContext, useEffect, useState } from 'react'
2-
import { getProfilePicture } from '../../helper/getProfilePicture'
32

4-
import { getImage } from '../../helper/getImage'
53
import {
64
ContextDisableFocusTrap,
75
ContextFilteredStreamData,
@@ -11,6 +9,8 @@ import {
119
ContextSEOSearchText,
1210
ContextStreamData,
1311
} from '../../App'
12+
import { getImage } from '../../helper/getImage'
13+
import { getProfilePicture } from '../../helper/getProfilePicture'
1414
import { getSearchFilter } from '../../helper/getSearchFilter'
1515

1616
type StreamProfilePictureProps = {
@@ -138,7 +138,10 @@ const StreamProfilePicture: FC<StreamProfilePictureProps> = ({
138138
})()
139139

140140
return (
141-
<button className="h-fit flex-shrink-0" onClick={handleClick}>
141+
<button
142+
className="h-fit flex-shrink-0 rounded-full pseudo-zinc"
143+
onClick={handleClick}
144+
>
142145
<img
143146
src={getImage(
144147
imageUrl,

0 commit comments

Comments
 (0)