Skip to content

Commit

Permalink
minor UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mms-gianni committed Jan 8, 2025
1 parent 86423da commit d66fc95
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
8 changes: 4 additions & 4 deletions client/src/components/apps/form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<Breadcrumbs :items="breadcrumbItems"></Breadcrumbs>
<v-row>
<v-col cols="12" sm="12" md="12" lg="12" xl="12">
<h2 v-if="app=='new'" style="font-size: xxx-large">
<h1 v-if="app=='new'" style="font-size: xxx-large">
Create a new App in {{ pipeline }}
</h2>
<h2 v-if="app!='new'">
</h1>
<h1 v-if="app!='new'" style="font-size: xxx-large">
Edit {{ app }} in {{ pipeline }}
</h2>
</h1>
<p class="text-justify">
in phase {{ phase }}
</p>
Expand Down
23 changes: 12 additions & 11 deletions client/src/components/pipelines/detail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,18 @@
:pipeline="pipeline"
:pullrequest="pr" />
</span>

<v-btn
elevation="2"
icon="mdi-plus"
:to="{ name: 'App Form', params: { phase: phase.name, pipeline: pipeline, app: 'new'}}"
class="mt-5 navBG"
color="secondary"
size="small"
style="margin-bottom: 5px;"
>
</v-btn>
<div>
<v-btn
elevation="2"
icon="mdi-plus"
:to="{ name: 'App Form', params: { phase: phase.name, pipeline: pipeline, app: 'new'}}"
class="mt-5 navBG"
color="secondary"
size="small"
style="margin-bottom: 5px;"
>
</v-btn>
</div>
</v-col>

</v-row>
Expand Down

0 comments on commit d66fc95

Please sign in to comment.