1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-19 00:09:16 +08:00

style: Optimize the layout of app operation buttons (#7322)

This commit is contained in:
2024-12-11 14:23:43 +08:00 committed by GitHub
parent 932da58759
commit cbad4dd172
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
@ -642,4 +642,9 @@ onUnmounted(() => {
max-height: 500px;
overflow-y: auto;
}
.d-button {
.el-button + .el-button {
margin-left: 0;
}
}
</style>