Skip to content

chore: Update dark theme logos styling (Fixes #1209) #1213

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

Merged
merged 6 commits into from
Jul 26, 2024
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
Prev Previous commit
Next Next commit
replaced var with let
  • Loading branch information
rahulharpal1603 authored Jul 23, 2024
commit 2bad04f8d10354051fd1a78962aef35cf90b9d48
2 changes: 1 addition & 1 deletion docs/src/components/HomepageFeatures/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const FeatureList: FeatureItem[] = [
]

function Feature({ title, Svg, description }: FeatureItem) {
var classVar = styles.featureSvg;
let classVar = styles.featureSvg;
if(Svg === require('@site/static/img/github.svg').default)
{
classVar = styles.featureSvg +" "+ styles.githubLogo;
Expand Down