-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix: space app default background #8384
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -15,7 +15,7 @@ export function PoweredBy(props: TPoweredBy) { | |||||
| return ( | ||||||
| <a | ||||||
| href={WEBSITE_URL} | ||||||
| className="fixed bottom-2.5 right-5 !z-[999999] flex items-center gap-1 rounded-sm border border-subtle bg-surface-1 px-2 py-1 shadow-raised-100" | ||||||
| className="fixed bottom-2.5 right-5 !z-[999999] flex items-center gap-1 rounded-sm border border-subtle bg-layer-3 px-2 py-1 shadow-raised-100" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Incorrect layer usage without matching parent surface. Changing from This fixed-position component doesn't have a parent with 🔎 Revert to the correct surface background:- className="fixed bottom-2.5 right-5 !z-[999999] flex items-center gap-1 rounded-sm border border-subtle bg-layer-3 px-2 py-1 shadow-raised-100"
+ className="fixed bottom-2.5 right-5 !z-[999999] flex items-center gap-1 rounded-sm border border-subtle bg-surface-1 px-2 py-1 shadow-raised-100"Based on learnings. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| target="_blank" | ||||||
| rel="noreferrer noopener" | ||||||
| > | ||||||
|
|
||||||
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.
For consistency with other files in this PR where
bg-surface-1is placed at the beginning of the className string, consider placing it at the start rather than at the end. This maintains a consistent pattern across all the background color additions.