fix: install card text overflow style#977
fix: install card text overflow style#977geoffrey-xiao wants to merge 1 commit intoopenclaw:mainfrom
Conversation
|
@geoffrey-xiao is attempting to deploy a commit to the 0xBuns Team on Vercel. A member of the Team first needs to authorize it. |
Greptile SummaryThis is a focused, style-only fix that resolves install-command text overflow inside the install panel on skill detail pages. It replaces the generic Key changes:
Confidence Score: 5/5
Prompt To Fix All With AIThis is a comment left during a code review.
Path: src/styles.css
Line: 2116-2117
Comment:
**Redundant `word-break` declaration**
`word-break: break-word` is a legacy, non-standard value (not in the W3C spec for `word-break`) and is redundant here since `overflow-wrap: anywhere` already instructs the browser to break at arbitrary points when no other soft-wrap opportunity exists. The combination is harmless but adds noise.
```suggestion
overflow-wrap: anywhere;
```
How can I resolve this? If you propose a fix, please make it concise.Last reviewed commit: 20faef8 |
| overflow-wrap: anywhere; | ||
| word-break: break-word; |
There was a problem hiding this comment.
Redundant
word-break declaration
word-break: break-word is a legacy, non-standard value (not in the W3C spec for word-break) and is redundant here since overflow-wrap: anywhere already instructs the browser to break at arbitrary points when no other soft-wrap opportunity exists. The combination is harmless but adds noise.
| overflow-wrap: anywhere; | |
| word-break: break-word; | |
| overflow-wrap: anywhere; |
Prompt To Fix With AI
This is a comment left during a code review.
Path: src/styles.css
Line: 2116-2117
Comment:
**Redundant `word-break` declaration**
`word-break: break-word` is a legacy, non-standard value (not in the W3C spec for `word-break`) and is redundant here since `overflow-wrap: anywhere` already instructs the browser to break at arbitrary points when no other soft-wrap opportunity exists. The combination is harmless but adds noise.
```suggestion
overflow-wrap: anywhere;
```
How can I resolve this? If you propose a fix, please make it concise.
Summary
Fixes the install card layout on skill detail pages.
Changes
before

after

Files changed
src/components/SkillInstallCard.tsxsrc/styles.cssNotes