-
Notifications
You must be signed in to change notification settings - Fork 16
UI bugs: Fix font color, preserve line breaks #1177
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 |
---|---|---|
|
@@ -97,4 +97,8 @@ $gradient: linear-gradient( | |
margin-right: $sp-1; | ||
} | ||
} | ||
|
||
.datepicker input{ | ||
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. Consider adding a space before the opening curly brace for consistency with the rest of the file's style. |
||
color: black; | ||
} | ||
} | ||
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. It's a good practice to ensure there is a newline at the end of the file to avoid potential issues with some tools and version control systems. |
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.
Using
dangerouslySetInnerHTML
can expose the application to XSS attacks if the HTML content is not properly sanitized. Ensure thatprops.opportunity.overview
is sanitized before rendering it in this way.