-
Notifications
You must be signed in to change notification settings - Fork 161
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: Design Issues #968
Feat: Design Issues #968
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@BrunoAmbricca is attempting to deploy a commit to the LFG Labs Team on Vercel. A member of the Team first needs to authorize it. |
WalkthroughThe changes in Changes
Assessment against linked issues
Possibly related PRs
Suggested labels
Warning There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure. 🔧 eslint
npm warn config production Use 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
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.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
components/pages/home/questAndCollectionTabs.tsx (1)
234-234
: Consider a more consistent spacing approach.While the bottom padding addresses the immediate issue, consider these improvements for better maintainability:
- Use consistent spacing methods (either all margins or all padding)
- Make all spacing responsive using Tailwind's breakpoint prefixes
Example refactor:
-<div className="flex flex-col items-center space-y-6 sm:pb-5"> +<div className="flex flex-col items-center space-y-4 sm:space-y-6 py-4 sm:py-5">
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
components/pages/home/questAndCollectionTabs.tsx
(1 hunks)
🔇 Additional comments (1)
components/pages/home/questAndCollectionTabs.tsx (1)
234-234
: LGTM! The padding change addresses the mobile view spacing issue.
The addition of sm:pb-5
class provides appropriate bottom padding for the cards section on small screens, directly resolving the design issue mentioned in #946.
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.
@@ -231,7 +231,7 @@ const QuestAndCollectionTabs: FunctionComponent< | |||
)} | |||
</CustomTabPanel> | |||
<CustomTabPanel value={tabIndex} index={1}> | |||
<div className="flex flex-col items-center space-y-6"> | |||
<div className="flex flex-col items-center space-y-6 pb-5 lg:pb-0"> |
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.
This should not be added there, but on line 214 (the quest list)
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.
I moved the code to the line you said but it didnt aplly the padding. Please check if it works for you
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.
Lgtm
Pull Request type
Please add the labels corresponding to the type of changes your PR introduces:
Resolves: #946
Summary by CodeRabbit
New Features
Bug Fixes