File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ function Illustration({
239
239
src = { src }
240
240
alt = { alt }
241
241
style = { { maxHeight : 300 } }
242
- className = "bg-white rounded-lg"
242
+ className = "rounded-lg"
243
243
/>
244
244
{ caption ? (
245
245
< figcaption className = "text-center leading-tight mt-4" >
@@ -271,7 +271,12 @@ function IllustrationBlock({
271
271
const images = imageInfos . map ( ( info , index ) => (
272
272
< figure key = { index } >
273
273
< div className = "bg-white rounded-lg p-4 flex-1 flex xl:p-6 justify-center items-center my-4" >
274
- < img src = { info . src } alt = { info . alt } height = { info . height } />
274
+ < img
275
+ className = "text-primary"
276
+ src = { info . src }
277
+ alt = { info . alt }
278
+ height = { info . height }
279
+ />
275
280
</ div >
276
281
{ info . caption ? (
277
282
< 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