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 @@ -243,7 +243,7 @@ function Illustration({
243243 src = { src }
244244 alt = { alt }
245245 style = { { maxHeight : 300 } }
246- className = "bg-white rounded-lg"
246+ className = "rounded-lg"
247247 />
248248 { caption ? (
249249 < figcaption className = "text-center leading-tight mt-4" >
@@ -275,7 +275,12 @@ function IllustrationBlock({
275275 const images = imageInfos . map ( ( info , index ) => (
276276 < figure key = { index } >
277277 < 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+ />
279284 </ div >
280285 { info . caption ? (
281286 < 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