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

style: Optimize international style layout (#7368)

This commit is contained in:
2024-12-16 13:44:08 +08:00 committed by GitHub
parent f7078a6140
commit 2ff1e3a245
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -123,10 +123,11 @@ html {
.input-help {
font-size: 12px;
word-break: break-all;
word-break: keep-all;
color: #adb0bc;
width: 100%;
display: inline-block;
white-space: normal;
}
.input-error {

View File

@ -13,7 +13,7 @@
<template #main>
<el-row class="mt-5 mb-5">
<el-col :span="1"><br /></el-col>
<el-col :xs="24" :sm="20" :md="20" :lg="10" :xl="10">
<el-col :xs="24" :sm="20" :md="20" :lg="14" :xl="14">
<div v-if="scanStatus !== 'scanned'">
<div v-if="scanStatus === 'beforeScan'">
<div v-if="form.lastCleanTime">

View File

@ -72,7 +72,7 @@
<el-form-item :label="$t('toolbox.device.localTime')" prop="localTime">
<el-input disabled v-model="form.localTime">
<template #append>
<el-button @click="onChangeLocalTime" icon="Refresh">
<el-button @click="onChangeLocalTime" icon="Refresh" width="150px">
{{ $t('commons.button.sync') }}
</el-button>
</template>