Skip to content

Commit abed507

Browse files
fix: add min width for img for small screen (#40)
1 parent ab421b9 commit abed507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game/src/components/past-games/da-image.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export const DAImage = (props: DAImageProps) => {
1010
const { da, width = 20, height = 20 } = props;
1111
return (
1212
<img
13-
className="rounded-full"
13+
className="rounded-full min-w-5 min-h-5"
1414
src={`https://assets.stackrlabs.xyz/${da}.png`}
1515
alt={DA_NAME[da]}
1616
width={width}

0 commit comments

Comments
 (0)