This commit is contained in:
Jonathan Chevalier
2022-09-29 16:03:50 +02:00
parent 96c063865a
commit 5192982555
7 changed files with 140 additions and 97 deletions

View File

@@ -6,14 +6,37 @@ import Wizard from "./components/Wizard.vue";
</script>
<template>
<div class="PARA">
<div class="app_vue_mmcm">
<main id="product">
<wizard></wizard>
<wizard v-if="$route.path !== '/'"></wizard>
<router-view></router-view>
</main>
</div>
</template>
<style scoped>
<style lang="scss">
@import 'https://fonts.googleapis.com/css?family=Montserrat';
.app_vue_mmcm{
font-family: 'Montserrat',sans-serif;
}
.step_title{
text-align: left;
font-size: 1.125rem;
font-weight: 700;
color: #000;
font-family: 'Montserrat',sans-serif;
margin-bottom: 30px
}
.step_title:after {
width: 85px;
height: 3px;
background-color: #f91ea9;
content: "";
display: block;
margin: 10px 0 0;
}
</style>