fix: 캐릭터 등록 폼

- 시스템 프롬프트, 태그 캡션 크기 16px로 수정
This commit is contained in:
Yu Sung 2025-08-05 16:56:25 +09:00
parent 94a989ea57
commit 49cd5a795b
1 changed files with 11 additions and 3 deletions

View File

@ -187,8 +187,10 @@
</v-chip>
</template>
</v-combobox>
<div class="caption grey--text text--darken-1">
태그를 입력하고 스페이스바를 누르면 추가됩니다.
<div
class="caption grey--text text--darken-1 custom-caption"
>
태그를 입력하고 엔터를 누르면 추가됩니다.
</div>
</v-col>
</v-row>
@ -265,7 +267,9 @@
auto-grow
rows="4"
/>
<div class="caption grey--text text--darken-1 mt-1">
<div
class="caption grey--text text--darken-1 mt-1 custom-caption"
>
캐릭터의 행동 방식과 제약사항을 정의하는 시스템 프롬프트입니다.
</div>
</v-col>
@ -617,4 +621,8 @@ export default {
.delete-btn {
font-size: 12px;
}
.custom-caption {
font-size: 16px !important;
}
</style>