@@ -33,7 +33,7 @@ export default function ImageEmbed(props: Props) {
33
33
width = { 500 }
34
34
height = { 250 }
35
35
priority
36
- className = "rounded-md h-full max-h-62 object-cover cursor-pointer hover:brightness-90"
36
+ className = "rounded-md h-full max-h-62 object-cover cursor-pointer hover:brightness-90 border border-skin-base "
37
37
onClick = { ( e ) => {
38
38
e . stopPropagation ( ) ;
39
39
setShowImage ( i ) ;
@@ -57,7 +57,7 @@ export default function ImageEmbed(props: Props) {
57
57
width = { images [ 0 ] . aspectRatio ?. width ?? 450 }
58
58
height = { images [ 0 ] . aspectRatio ?. height ?? 450 }
59
59
priority
60
- className = "rounded-md object-cover h-full cursor-pointer hover:brightness-90"
60
+ className = "rounded-md object-cover h-full cursor-pointer hover:brightness-90 border border-skin-base "
61
61
onClick = { ( e ) => {
62
62
e . stopPropagation ( ) ;
63
63
setShowImage ( 0 ) ;
@@ -75,7 +75,7 @@ export default function ImageEmbed(props: Props) {
75
75
width = { images [ 1 ] . aspectRatio ?. width ?? 450 }
76
76
height = { images [ 1 ] . aspectRatio ?. height ?? 450 }
77
77
priority
78
- className = "rounded-md object-cover w-full h-full cursor-pointer hover:brightness-90"
78
+ className = "rounded-md object-cover w-full h-full cursor-pointer hover:brightness-90 border border-skin-base "
79
79
onClick = { ( e ) => {
80
80
e . stopPropagation ( ) ;
81
81
setShowImage ( 1 ) ;
@@ -91,7 +91,7 @@ export default function ImageEmbed(props: Props) {
91
91
width = { images [ 2 ] . aspectRatio ?. width ?? 450 }
92
92
height = { images [ 2 ] . aspectRatio ?. height ?? 450 }
93
93
priority
94
- className = "rounded-md object-cover w-full h-full cursor-pointer hover:brightness-90"
94
+ className = "rounded-md object-cover w-full h-full cursor-pointer hover:brightness-90 border border-skin-base "
95
95
onClick = { ( e ) => {
96
96
e . stopPropagation ( ) ;
97
97
setShowImage ( 2 ) ;
@@ -114,7 +114,7 @@ export default function ImageEmbed(props: Props) {
114
114
width = { images [ i ] . aspectRatio ?. width ?? 450 }
115
115
height = { images [ i ] . aspectRatio ?. height ?? 450 }
116
116
priority
117
- className = "object-cover aspect-square rounded-md h-full max-h-64 cursor-pointer hover:brightness-90"
117
+ className = "object-cover aspect-square rounded-md h-full max-h-64 cursor-pointer hover:brightness-90 border border-skin-base "
118
118
onClick = { ( e ) => {
119
119
e . stopPropagation ( ) ;
120
120
setShowImage ( i ) ;
@@ -137,7 +137,7 @@ export default function ImageEmbed(props: Props) {
137
137
width = { images [ 0 ] . aspectRatio ?. width ?? 900 }
138
138
height = { images [ 0 ] . aspectRatio ?. height ?? 900 }
139
139
priority
140
- className = "rounded-md max-h-96 w-full object-cover cursor-pointer hover:brightness-90"
140
+ className = "rounded-md max-h-96 w-full object-cover cursor-pointer hover:brightness-90 border border-skin-base "
141
141
onClick = { ( e ) => {
142
142
e . stopPropagation ( ) ;
143
143
setShowImage ( 0 ) ;
0 commit comments