From b42d71857e83f1d52c10ba8d9569803357df19ce Mon Sep 17 00:00:00 2001 From: Shubh Pingale <135618936+shubhtrek@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:32:27 +0530 Subject: [PATCH] fix: add missing .logoImage CSS class in CNCFInfo styles.module.css The CNCFInfo component applies styles.logoImage to the CNCF logo img element, but the corresponding .logoImage class was not defined in styles.module.css. This caused the image to fall back to its default SVG dimensions instead of rendering with consistent sizing. Add the missing .logoImage class with responsive styling: - width: 100% for full container width - max-width: 400px to cap the logo size - height: auto to preserve aspect ratio - display: block + margin: 0 auto for centering Signed-off-by: Shubh Pingale <135618936+shubhtrek@users.noreply.github.com> --- src/components/CNCFInfo/styles.module.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/CNCFInfo/styles.module.css b/src/components/CNCFInfo/styles.module.css index f6f527aeb..f15370058 100644 --- a/src/components/CNCFInfo/styles.module.css +++ b/src/components/CNCFInfo/styles.module.css @@ -24,4 +24,9 @@ .cncfLine2 { font-size: 1.8rem; } - \ No newline at end of file + + .logoImage { + width: 100%; + height: auto; + display: block; + } \ No newline at end of file