fix: add flex-shrink style for labels (#547)

This commit is contained in:
Fine0830
2026-04-18 14:09:25 +08:00
committed by GitHub
parent a6be0e0e0d
commit f6c6612af8
4 changed files with 7 additions and 5 deletions

View File

@@ -156,7 +156,6 @@ limitations under the License. -->
.link {
float: right;
margin-bottom: 20px;
}
.active {

View File

@@ -234,6 +234,7 @@ limitations under the License. -->
}
.label {
line-height: 24px;
line-height: var(--el-input-height, 24px);
flex-shrink: 0;
}
</style>

View File

@@ -72,7 +72,7 @@ limitations under the License. -->
</div>
<div class="flex-h row" v-show="!isBrowser">
<div class="mr-10 traceId">
<span class="grey mr-5 label">{{ t("traceID") }}:</span>
<span class="grey mr-5">{{ t("traceID") }}:</span>
<el-input v-model="traceId" class="inputs-max" size="small" />
</div>
<ConditionTags :type="'LOG'" @update="updateTags" />
@@ -480,6 +480,7 @@ limitations under the License. -->
}
.label {
line-height: 24px;
line-height: var(--el-input-height, 24px);
flex-shrink: 0;
}
</style>

View File

@@ -356,6 +356,7 @@ limitations under the License. -->
}
.label {
line-height: 24px;
line-height: var(--el-input-height, 24px);
flex-shrink: 0;
}
</style>