-
Notifications
You must be signed in to change notification settings - Fork 3.1k
style: change import license button style #8969
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 |
|---|---|---|
|
|
@@ -388,7 +388,7 @@ | |
| <AppIgnore ref="ignoreRef" @close="search" /> | ||
| <ComposeLogs ref="composeLogRef" /> | ||
| <TaskLog ref="taskLogRef" @close="search" /> | ||
| <Detail ref="detailRef" @close="search" /> | ||
| <Detail ref="detailRef" /> | ||
| <IgnoreApp ref="ignoreAppRef" @close="search" /> | ||
| </template> | ||
|
|
||
|
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 change from <Detail ref="detailRef" />Make sure to add appropriate comments or documentation if needed, but this should resolve the inconsistency. |
||
|
|
||
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.
The provided code snippet does not contain any obvious errors, but there are some minor improvements that could be made:
Spacing and Consistency: The use of
mt-3without specifying the direction (left,right, etc.) might cause unexpected spacing unless explicitly set. Consider using bothmt-3and optionalml-autofor alignment if needed.Button Size: The
size="large"prop is added to the button, which enhances its visual appeal. However, it's important to ensure that this size matches other components' styles in the application.Scss Customization: While
.custom-buttonis still styled withletter-spacing: auto;, adding explicit values can improve readability and potentially control the design more precisely.Here’s an optimized version of the code snippet:
Summary:
ml-autoto align buttons correctly.