Skip to content

Commit

Permalink
final css (for sprint)
Browse files Browse the repository at this point in the history
  • Loading branch information
BasICTStudent committed Mar 16, 2023
1 parent cee2bb3 commit 3fc2b8d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion components/contract/SelectAgreementTemplate.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-container>
<div class="text-h1">Select Agreement Propasal Template</div>
<div class="text-h1" style="text-align: center;">Select Agreement Propasal Template</div>
<v-row>
<v-col cols="12" md="4" style="min-width: 100%;">
<v-text-field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<template>
<v-sheet width="90%" class="mx-auto pa-10" style="margin-top: 10vh; margin-bottom: 12vh;">
<h1 style="margin-bottom: 10px;">Edit Template (Grant Contract)</h1>
<h1 style="margin-bottom: 10px; text-align: center;">Edit Template (Grant Contract)</h1>
<v-form ref="form">

<v-container fluid style="padding: 1px; margin: 5px;">
Expand Down
44 changes: 22 additions & 22 deletions components/contract/grant_contract/views/StageBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@

<template>
<v-sheet width="90%" class="mx-auto pa-10" style="margin-top: 10vh; margin-bottom: 12vh;">
<h1 style="margin-bottom: 10px;">{{ title }}</h1>
<v-row>
<v-col cols="2">
<v-btn
v-if="!isFirst"
color="info"
block
@click="previous"
>previous</v-btn>
</v-col>
<v-col cols="8">
<slot></slot>
</v-col>
<v-col cols="2">
<v-btn
color="info"
block
@click="next"
>next</v-btn>
<!-- <button></button> -->
</v-col>
</v-row>
<h1 style="margin-bottom: 10px; text-align: center;">{{ title }}</h1>
<v-row>
<v-col cols="2">
<v-btn
v-if="!isFirst"
color="info"
block
@click="previous"
>previous</v-btn>
</v-col>
<v-col cols="8">
<slot></slot>
</v-col>
<v-col cols="2">
<v-btn
color="info"
block
@click="next"
>next</v-btn>
<!-- <button></button> -->
</v-col>
</v-row>
</v-sheet>
</template>
<script>
Expand Down

0 comments on commit 3fc2b8d

Please sign in to comment.