Skip to content
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 the layout of app operation buttons #7322

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion frontend/src/views/app-store/installed/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
</div>
<div class="app-divider" />
<div
class="d-button"
class="d-button flex flex-wrap items-center justify-start gap-3"
v-if="mode === 'installed' && installed.status != 'Installing'"
>
<el-button
Expand Down Expand Up @@ -642,4 +642,9 @@ onUnmounted(() => {
max-height: 500px;
overflow-y: auto;
}
.d-button {
.el-button + .el-button {
margin-left: 0;
}
}
</style>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It appears that there's no specific code difference you mentioned or an issue to discuss regarding regularity, functionality, or optimizations. It is important to note though, without further context (such as a previous commit history, test cases, etc), these discussions are generally speculative and can't conclusively determine whether something is wrong or not with accuracy.

Loading