Skip to content

Commit d66fc95

Browse files
committed
minor UI improvements
1 parent 86423da commit d66fc95

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

client/src/components/apps/form.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
<Breadcrumbs :items="breadcrumbItems"></Breadcrumbs>
55
<v-row>
66
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
7-
<h2 v-if="app=='new'" style="font-size: xxx-large">
7+
<h1 v-if="app=='new'" style="font-size: xxx-large">
88
Create a new App in {{ pipeline }}
9-
</h2>
10-
<h2 v-if="app!='new'">
9+
</h1>
10+
<h1 v-if="app!='new'" style="font-size: xxx-large">
1111
Edit {{ app }} in {{ pipeline }}
12-
</h2>
12+
</h1>
1313
<p class="text-justify">
1414
in phase {{ phase }}
1515
</p>

client/src/components/pipelines/detail.vue

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,18 @@
2929
:pipeline="pipeline"
3030
:pullrequest="pr" />
3131
</span>
32-
33-
<v-btn
34-
elevation="2"
35-
icon="mdi-plus"
36-
:to="{ name: 'App Form', params: { phase: phase.name, pipeline: pipeline, app: 'new'}}"
37-
class="mt-5 navBG"
38-
color="secondary"
39-
size="small"
40-
style="margin-bottom: 5px;"
41-
>
42-
</v-btn>
32+
<div>
33+
<v-btn
34+
elevation="2"
35+
icon="mdi-plus"
36+
:to="{ name: 'App Form', params: { phase: phase.name, pipeline: pipeline, app: 'new'}}"
37+
class="mt-5 navBG"
38+
color="secondary"
39+
size="small"
40+
style="margin-bottom: 5px;"
41+
>
42+
</v-btn>
43+
</div>
4344
</v-col>
4445

4546
</v-row>

0 commit comments

Comments
 (0)