-
Notifications
You must be signed in to change notification settings - Fork 2.9k
style: Optimize style #7414
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
style: Optimize style #7414
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 |
|---|---|---|
|
|
@@ -160,8 +160,3 @@ defineExpose({ | |
| acceptParams, | ||
| }); | ||
| </script> | ||
| <style scoped> | ||
| :deep(.log-container) { | ||
| background-color: var(--panel-main-bg-color-10); | ||
| } | ||
| </style> | ||
|
Member
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. No significant issues were found in the provided code snippet. The |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -230,7 +230,7 @@ defineExpose({ | |
| border-top: 1px var(--el-border-color) var(--el-border-style); | ||
| } | ||
| .alert { | ||
| background-color: var(--panel-main-bg-color-10); | ||
| background-color: var(--panel-alert-bg-color); | ||
| } | ||
|
|
||
| .card-title { | ||
|
Member
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. The changes look generally correct. Here's a brief review:
There might be other styles or components that could benefit from further review if you provide more details about the complete context or additional files involved in this project. Otherwise, this set of changes seems appropriate given the existing style variables ( |
||
|
|
||
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.
No irregularities were found in the provided code changes. The addition of
--panel-alert-bg-colorsuggests that alerts may include custom styling with this background color, enhancing user experience based on its usage within your application.