Skip to content

Commit 9b073d8

Browse files
committed
Merge branch 'preview'
2 parents 077723b + 0bd50ee commit 9b073d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/dataDisplay/postEmbed/ImageEmbed.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function ImageEmbed(props: Props) {
3333
width={500}
3434
height={250}
3535
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"
3737
onClick={(e) => {
3838
e.stopPropagation();
3939
setShowImage(i);
@@ -57,7 +57,7 @@ export default function ImageEmbed(props: Props) {
5757
width={images[0].aspectRatio?.width ?? 450}
5858
height={images[0].aspectRatio?.height ?? 450}
5959
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"
6161
onClick={(e) => {
6262
e.stopPropagation();
6363
setShowImage(0);
@@ -75,7 +75,7 @@ export default function ImageEmbed(props: Props) {
7575
width={images[1].aspectRatio?.width ?? 450}
7676
height={images[1].aspectRatio?.height ?? 450}
7777
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"
7979
onClick={(e) => {
8080
e.stopPropagation();
8181
setShowImage(1);
@@ -91,7 +91,7 @@ export default function ImageEmbed(props: Props) {
9191
width={images[2].aspectRatio?.width ?? 450}
9292
height={images[2].aspectRatio?.height ?? 450}
9393
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"
9595
onClick={(e) => {
9696
e.stopPropagation();
9797
setShowImage(2);
@@ -114,7 +114,7 @@ export default function ImageEmbed(props: Props) {
114114
width={images[i].aspectRatio?.width ?? 450}
115115
height={images[i].aspectRatio?.height ?? 450}
116116
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"
118118
onClick={(e) => {
119119
e.stopPropagation();
120120
setShowImage(i);
@@ -137,7 +137,7 @@ export default function ImageEmbed(props: Props) {
137137
width={images[0].aspectRatio?.width ?? 900}
138138
height={images[0].aspectRatio?.height ?? 900}
139139
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"
141141
onClick={(e) => {
142142
e.stopPropagation();
143143
setShowImage(0);

0 commit comments

Comments
 (0)