automatic IDE clean code

This commit is contained in:
2021-08-02 13:44:13 +02:00
parent 714d8b841c
commit ad55cc0477
7 changed files with 86 additions and 86 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">
<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>
@@ -17,7 +17,7 @@
<resources></resources>
<comment v-if="accompanyingCourse.step === 'DRAFT'"></comment>
<confirm v-if="accompanyingCourse.step === 'DRAFT'"></confirm>
</div>
</div>
</template>
@@ -38,11 +38,11 @@ import Confirm from './components/Confirm.vue';
export default {
name: 'App',
components: {
components: {
Banner,
StickyNav,
OriginDemand,
PersonsAssociated,
PersonsAssociated,
Requestor,
SocialIssue,
CourseLocation,
@@ -81,12 +81,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;
@@ -94,6 +94,6 @@ export default {
table {
}
}
}
</style>