Skip to content

Commit 4398350

Browse files
authored
Merge pull request #215 from det101/master
title style change
2 parents f5360c3 + 36b2c4a commit 4398350

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

web/src/assets/styles/workspace.scss

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,14 @@
216216
margin-right: 50px;
217217
flex-wrap: wrap;
218218

219-
.title-sub {
219+
.sub-margin {
220220
margin-right: 10px;
221221
}
222222

223+
.sub-title {
224+
font-weight: 700;
225+
}
226+
223227
.app-tag {
224228
color: #07C1E0;
225229
border: 1px solid transparent;

web/src/js/view/workspace/index.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
<div class="app-title-wrap">
6868

6969
<div class="app-title">
70-
<i class="app-icon title-sub" :class="iconSplit(item.icon)[0]" :style="`color: ${iconSplit(item.icon)[1]}`"></i>
71-
<span class="label title-sub">{{item.title}}</span>
72-
<Tag class="app-tag title-sub" v-for="tag in (item.labels ? item.labels.split(','):[])" :key="tag">{{tag}}</Tag>
70+
<i class="app-icon sub-margin" :class="iconSplit(item.icon)[0]" :style="`color: ${iconSplit(item.icon)[1]}`"></i>
71+
<span class="label sub-margin sub-title">{{item.title}}</span>
72+
<Tag class="app-tag sub-margin" v-for="tag in (item.labels ? item.labels.split(','):[])" :key="tag">{{tag}}</Tag>
7373
</div>
7474

7575

0 commit comments

Comments
 (0)