search page, content position

This commit is contained in:
2021-07-20 16:22:16 +02:00
parent ea734e2a9e
commit afd4ac27ea
7 changed files with 62 additions and 46 deletions

View File

@@ -1,13 +1,13 @@
<template>
<banner></banner>
<sticky-nav></sticky-nav>
<div class="row justify-content-end">
<div class="col-md-11">
<div class="col-md-11 col-xxl">
<h1 v-if="accompanyingCourse.step === 'DRAFT'">{{ $t('course.title.draft') }}</h1>
<h1 v-else>{{ $t('course.title.active') }}</h1>
<persons-associated></persons-associated>
<origin-demand></origin-demand>
<requestor></requestor>
@@ -16,7 +16,7 @@
<resources></resources>
<comment v-if="accompanyingCourse.step === 'DRAFT'"></comment>
<confirm v-if="accompanyingCourse.step === 'DRAFT'"></confirm>
</div>
</div>
</template>
@@ -36,11 +36,11 @@ import Confirm from './components/Confirm.vue';
export default {
name: 'App',
components: {
components: {
Banner,
StickyNav,
OriginDemand,
PersonsAssociated,
PersonsAssociated,
Requestor,
SocialIssue,
Referrer,
@@ -78,12 +78,12 @@ export default {
}
padding: 0em 0em;
margin: 1em 0;
border: 1px dotted #718596ab;
border: 1px dotted #718596ab;
border-radius: 5px;
border-left: 1px dotted #718596ab;
border-right: 1px dotted #718596ab;
dd {
margin-left: 1em;
dd {
margin-left: 1em;
}
& > div {
margin: 1em 3em 0;
@@ -91,6 +91,6 @@ export default {
table {
}
}
}
</style>