File tree 1 file changed +7
-2
lines changed 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ function Illustration({
243
243
src = { src }
244
244
alt = { alt }
245
245
style = { { maxHeight : 300 } }
246
- className = "bg-white rounded-lg"
246
+ className = "rounded-lg"
247
247
/>
248
248
{ caption ? (
249
249
< figcaption className = "text-center leading-tight mt-4" >
@@ -275,7 +275,12 @@ function IllustrationBlock({
275
275
const images = imageInfos . map ( ( info , index ) => (
276
276
< figure key = { index } >
277
277
< div className = "bg-white rounded-lg p-4 flex-1 flex xl:p-6 justify-center items-center my-4" >
278
- < img src = { info . src } alt = { info . alt } height = { info . height } />
278
+ < img
279
+ className = "text-primary"
280
+ src = { info . src }
281
+ alt = { info . alt }
282
+ height = { info . height }
283
+ />
279
284
</ div >
280
285
{ info . caption ? (
281
286
< figcaption className = "text-secondary dark:text-secondary-dark text-center leading-tight mt-4" >
You can’t perform that action at this time.
0 commit comments