-
Notifications
You must be signed in to change notification settings - Fork 182
fix(ui): consolidate double glow effect in kanvas pop-up #1042
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: master
Are you sure you want to change the base?
Changes from 1 commit
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 |
|---|---|---|
|
|
@@ -57,7 +57,7 @@ | |
| padding: 1rem; | ||
| border: 1px solid #00d3a9; | ||
| border-radius: 5%; | ||
| box-shadow: 0 0 42px rgba(0, 211, 169, 0.85), 0 0 80px rgba(0, 211, 169, 0.25); | ||
| box-shadow: 0 0 28px rgba(0, 211, 169, 0.55); | ||
|
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. take gemini's review into consideration and prolly use I tried it on my end and the results were almost identical for both primary and secondary, it comes down to you what you think suits better.
Contributor
Author
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. Will go with your suggested change. On my end, I was trying to consolidate the border and background glow effect, which is why I used that approach. |
||
|
|
||
| @media (max-width: 640px) { | ||
| padding: 0.8rem; | ||
|
|
||
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.
To improve maintainability and ensure consistency with the rest of the project, consider using the
$primaryvariable instead of the hardcoded RGB values. This ensures that if the brand color changes, the glow effect will update automatically. Note that$primaryis already used in lines 149 and 159.