-
Notifications
You must be signed in to change notification settings - Fork 307
chore(dev-hub) Component: Integration Card #3176
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
base: main
Are you sure you want to change the base?
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
5 Skipped Deployments
|
| key={index} | ||
| href={link.href} |
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.
nit href should be unique since the links are unique so you can do key={link.href}
| letter-spacing: -0.03em; // -0.9px | ||
| color: var(--color-fd-foreground); | ||
| white-space: nowrap; | ||
| overflow: visble; |
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.
visble?
9b1f3b7 to
d61e9a2
Compare
|
|
||
| padding: 2rem 1rem; | ||
|
|
||
| @media (width >= 768px) { | ||
| padding: 3rem 1.5rem; | ||
| } | ||
| } |
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.
can we please use more utils from the theme file
| align-items: center; | ||
| justify-content: flex-start; | ||
|
|
||
| :global(button) { |
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 button component can take a custom class so we don't have to do this kind of selection
| margin: 0; | ||
| font-size: 1rem; // 16px | ||
| font-weight: 400; | ||
| line-height: 1.65; | ||
| letter-spacing: -0.01em; // -0.16px | ||
| color: var(--color-fd-foreground); | ||
| opacity: 0.9; | ||
| overflow: visible; | ||
| display: -webkit-box; | ||
| -webkit-line-clamp: 3; | ||
| line-clamp: 3; | ||
| -webkit-box-orient: vertical; | ||
| flex: 1; |
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.
tbh so many of these css rules are not really doing anything or relevant...
Summary
Rationale
How has this been tested?