-
Notifications
You must be signed in to change notification settings - Fork 366
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
[Dashboard] Remove Flex easy mode #4785
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
Your org has enabled the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4785 +/- ##
=======================================
Coverage 49.13% 49.13%
=======================================
Files 1051 1051
Lines 56681 56681
Branches 3889 3889
=======================================
Hits 27850 27850
Misses 28198 28198
Partials 633 633
*This pull request uses carry forward flags. Click here to find out more. |
size-limit report 📦
|
3eba1e6
to
c5198d1
Compare
6a12e75
to
d64fdba
Compare
c5198d1
to
5b7f091
Compare
2c5187c
to
a22bb73
Compare
62c6839
to
2275b64
Compare
Merge activity
|
a22bb73
to
65eda76
Compare
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on replacing instances of the `Flex` component with `div` elements styled with `flex` classes, streamlining the layout structure across various components in the project. ### Detailed summary - Replaced `<Flex>` with `<div className="flex flex-row">` in multiple files. - Updated layout in `snapshot-upload.tsx`, `airdrop-upload.tsx`, `batch-lazy-mint.tsx`, and others. - Ensured consistent flexbox styling across components without altering functionality. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
2275b64
to
0a021c6
Compare
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on replacing instances of the `Flex` component with `div` elements that have corresponding CSS classes for layout styling. This change aims to streamline the code while maintaining the same visual structure. ### Detailed summary - Replaced `<Flex>` with `<div className="flex flex-row">` in multiple components for horizontal alignment. - Replaced `<Flex>` with `<div className="flex flex-col">` in several components for vertical alignment. - Ensured all functional components maintain the same layout and behavior after changes. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
65eda76
to
46acf33
Compare
0a021c6
to
d76618f
Compare
Problem solved
Short description of the bug fixed or feature added
PR-Codex overview
This PR focuses on replacing instances of the
Flex
component withdiv
elements styled withflex
classes across various files in the codebase. This change aims to standardize the layout structure while maintaining the same visual appearance.Detailed summary
<Flex>
with<div className="flex flex-row">
in multiple components for consistency.<Flex direction="column">
to<div className="flex flex-col">
in various files.