| 12345678910111213141516171819202122232425262728293031 |
- <!--
- Troisième bandeau en partant du haut, contenant entre autre le numéro SIRET de l'organisation
- -->
- <!-- TODO: voir si possible de trouver un nom plus spécifique -->
- <template>
- <v-row justify="center" align="center" class="bannerTopForm">
- <v-col cols="3" class="theme-neutral-strong">
- <slot name="block1" />
- </v-col>
- <v-col cols="6" class="theme-neutral">
- <slot name="block2" />
- </v-col>
- <v-col cols="3" class="theme-neutral-soft">
- <slot name="block3" />
- </v-col>
- </v-row>
- </template>
- <style scoped>
- .bannerTopForm {
- min-height: 100px;
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- .bannerTopForm > .col {
- min-height: 100px;
- padding: 10px;
- padding-left: 24px;
- }
- </style>
|