-
Notifications
You must be signed in to change notification settings - Fork 12
feat(landing): enhance layout of trusted by section for improved spacing #21
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -535,7 +535,7 @@ function RealHome() { | |||||
|
|
||||||
| <Reveal delay={0.15}> | ||||||
| <div className="flex flex-wrap items-center gap-4 rounded-2xl border border-border bg-card/70 px-6 py-4 text-sm text-muted-foreground shadow-sm"> | ||||||
| <span className="font-semibold text-foreground"> | ||||||
| <span className="font-semibold text-foreground mr-2"> | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The parent
Suggested change
|
||||||
| {t("trustedBy")} | ||||||
| </span> | ||||||
| <RevealGroup className="flex flex-wrap items-center gap-3"> | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Tailwind CSS class order is inconsistent with the codebase conventions. In this project, margin classes are consistently placed before text utility classes. The
mr-2class should be positioned beforetext-foregroundto maintain consistency with patterns seen throughout the file (e.g., lines 495, 509, 528, 678, 712 wheremt-2precedes text-related classes).