Skip to content

Commit

Permalink
fix: item width style
Browse files Browse the repository at this point in the history
  • Loading branch information
jialudev committed Dec 16, 2024
1 parent 8417dd2 commit 3f7230e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/src/components/collections/NewCollection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
v-model="dataForm.owner"
:placeholder="$t('all.select')"
size="large"
style="width: 312px"
class="!w-full"
>
<el-option
v-for="item in namespaces()"
Expand All @@ -42,7 +42,7 @@
<el-input
v-model="dataForm.title"
:placeholder="$t('rule.collectionNameRule')"
style="width: 312px"
class="!w-full"
>
<template #suffix>
<InputTip :content="$t('collections.newCollection.tip')" />
Expand All @@ -60,11 +60,11 @@
<el-input
v-model="dataForm.collectionNickName"
:placeholder="$t('all.inputNickNamePlc')"
style="width: 312px"
class="!w-full"
/>
</el-form-item>
</div>
<div class="">
<div class="flex-1">
<p class="text-gray-700 text-sm mb-2">
{{ $t('collections.newCollection.selectTheme') }}
</p>
Expand All @@ -73,7 +73,7 @@
v-model="dataForm.colorName"
:placeholder="$t('all.select')"
size="large"
style="width: 312px"
class="!w-full"
>
<el-option
v-for="item in colorNameList"
Expand Down

0 comments on commit 3f7230e

Please sign in to comment.