perf: 优化主题颜色UI

This commit is contained in:
奔跑的面条
2023-02-24 21:42:27 +08:00
parent 125856677a
commit 49d8c35747
2 changed files with 11 additions and 21 deletions
@@ -5,7 +5,7 @@
</n-icon>
<n-text @click="handleFocus">
工作空间 -
<n-button v-show="!focus" secondary round size="tiny">
<n-button v-show="!focus" secondary size="tiny">
<span class="title">
{{ comTitle }}
</span>
@@ -19,7 +19,6 @@
type="text"
maxlength="16"
show-count
round
placeholder="请输入项目名称"
v-model:value.trim="title"
@keyup.enter="handleBlur"
@@ -74,6 +73,8 @@ const handleBlur = () => {
</script>
<style lang="scss" scoped>
.title {
padding-left: 5px;
padding-right: 5px;
font-size: 15px;
}
</style>