kmesh-net / kmesh-net/website

[Bug][UI] logoImage CSS class is referenced but not defined in styles.module.css

Open
#326 2 comments 0 reactions 1 assignee Claimed by @shubhtrek View on GitHub
good first issue
Dominant language
JavaScript
Stars
12
Forks
75
PR merge metrics
No merged PRs in 30d

Description

## Task Description

The `CNCFInfo` component applies the CSS Module class `logoImage` to the CNCF logo image, but the corresponding `.logoImage` class is not defined in `styles.module.css`.

Because of this, the image renders without the intended styling and falls back to its default SVG dimensions.

## Expected Behavior

The CNCF logo should have a dedicated CSS class to ensure consistent sizing and responsive rendering across different screen sizes.

## Proposed Solution

Add the missing `.logoImage` class to `src/components/CNCFInfo/styles.module.css`.

Example:

```css
.logoImage {
width: 100%;
max-width: 400px;
height: auto;
display: block;
margin: 0 auto;
}
```

This will ensure the logo is displayed consistently and responsively.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.