Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add bullet points to integrations feature list section #6202

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import RelatedIntegration from "../IntegrationsGrid";
import HowMesheryWorksSpecs from "../../../../components/specs";
import ModelComponents from "./ComponentsGrid";
import CatalogGrid from "./CatalogGrid";
import { ReactComponent as MesheryLogoBullet } from "../../../../assets/images/meshery/icon-only/meshery-logo.svg";

const IndividualIntegrations = ({ data }) => {
const { frontmatter, body } = data.mdx;
Expand Down Expand Up @@ -73,7 +74,17 @@ const IndividualIntegrations = ({ data }) => {
<h2>Features</h2>
<ul>
{frontmatter.featureList.map((feature, indx) => (
<li key={indx}>{feature}</li>
<li key={indx}>
<MesheryLogoBullet
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use the original green colored meshery logo, this isn't visible in light mode
{89C78315-4437-4D79-9708-2CD0F3FC7386}

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @sudhanshutech I have updated bullets with the original green colored meshery logo, the name of the file was (meshery-logo-light.svg) in this directory 'src/assets/images/meshery/icon-only'

style={{
width: "10px",
height: "10px",
minWidth: "10px",
marginRight: "16px",
}}
/>
{feature}
</li>
))}
</ul>
</div>
Expand Down
Loading