-
Notifications
You must be signed in to change notification settings - Fork 90
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
styling & CSS Improvements: Add CSS variables for better color consistency #6405
Conversation
- Add improved monster styling and layout in JobConclusion.module.css - Add column width definitions and improve job header styling in hud.module.css - Add better text truncation and hover behavior for metadata - Add table wrapper styles and even/odd row styling in minihud.module.css - Improve tooltip appearance and cursor behavior 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
style={{ | ||
display: "flex", | ||
alignItems: "center", | ||
gap: "0.25rem", | ||
cursor: "pointer", | ||
whiteSpace: "nowrap", | ||
}} |
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 looks like an unnecessary change
<div style={{ position: "relative", clear: "both" }}> | ||
<div className={styles.controlsContainer}> |
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 looks unnecessary to be frank, but sure, why not
Regression since #6405 - making the dropdown of the navbar hide at times.
Summary
This is the first part of splitting #6392 into three smaller PRs. This PR focuses only on CSS improvements unrelated to dark mode:
This PR provides better maintainability by centralizing color definitions without adding any dark mode functionality.
Part of #6392