-
Notifications
You must be signed in to change notification settings - Fork 2
Laxman feat #10
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: laxman
Are you sure you want to change the base?
Laxman feat #10
Conversation
laxman-aqw
commented
Nov 17, 2025
- Merged all the branches.
| <label className={styles["input-field__label"]}> | ||
| {label.charAt(0).toUpperCase() + label.slice(1)} | ||
| </label> |
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.
you can use css text-transform: capitalize here instead of capitalizing the first letter through js
| @@ -0,0 +1,40 @@ | |||
| .increment, .decrement{ | |||
| background-color: rgb(32, 175, 32); | |||
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.
Just a suggestion but it might be a better idea to use only rgb color or hex code everywhere as I noticed you're using both
| .input-field__value { | ||
| margin-top: 4px; | ||
| font-size: 12px; | ||
| color: #555; | ||
| font-style: italic; | ||
| } |
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 class and its associated properties appear to be unused
| <li key={index} className={styles["item-list__item"]} onClick={() => setSelectedItem(item)}> | ||
| {item} | ||
| </li> |
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 don't think the onClick here has any effect