-
Notifications
You must be signed in to change notification settings - Fork 0
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
Enhance UI components and navigation #186
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
a3b5076
to
ec3eb79
Compare
/** Controls whether users can edit project details and settings in: | ||
* - /projects/custom-project/details | ||
* - /projects/custom-project/summary | ||
*/ | ||
"edit-project": false, | ||
|
||
/** Controls the visibility and sharing functionality in: | ||
* - /profile | ||
*/ | ||
"share-information": false, | ||
/** Controls the project comparison functionality in: | ||
* - /overview/project-details (scorecard ratings and cost estimates comparison) | ||
*/ | ||
"project-comparison": false, | ||
/** Controls the actions dropdown functionality in: | ||
* - /my-projects table | ||
*/ | ||
"update-selection": false, | ||
/** Controls the visibility of the methodology page */ | ||
"methodology-page": false, |
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.
👌🏻 👌🏻 👌🏻
client/tailwind.config.ts
Outdated
"ramps-green": "#A4B591", | ||
"ramps-yellow": "#F5EBB8", | ||
"ramps-red": "#F7BA93", |
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.
We could have gone for ramps: { green: '#...', yellow: '#...', }
as well 👍🏻
@@ -218,15 +218,15 @@ export default function ToolbarProjectsTable() { | |||
Each metric can go from a scale from low to high: | |||
</p> | |||
<div className="!mt-4 grid grid-cols-3 gap-2 text-center"> | |||
<div className="height[fit-content] rounded-md bg-low p-2 text-sky-blue-950"> | |||
<div className="height[fit-content] rounded-md bg-ramps-red p-2 text-sky-blue-950"> |
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.
Please, replace height[fit-content]
with h-fit
.
f737a1c
to
2721ef2
Compare
Enhance UI components and navigation
FE - Design review