BannerTop.vue 754 B

12345678910111213141516171819202122232425262728293031
  1. <!--
  2. Troisième bandeau en partant du haut, contenant entre autre le numéro SIRET de l'organisation
  3. -->
  4. <!-- TODO: voir si possible de trouver un nom plus spécifique -->
  5. <template>
  6. <v-row justify="center" align="center" class="bannerTopForm">
  7. <v-col cols="3" class="theme-neutral-strong">
  8. <slot name="block1" />
  9. </v-col>
  10. <v-col cols="6" class="theme-neutral">
  11. <slot name="block2" />
  12. </v-col>
  13. <v-col cols="3" class="theme-neutral-soft">
  14. <slot name="block3" />
  15. </v-col>
  16. </v-row>
  17. </template>
  18. <style scoped>
  19. .bannerTopForm {
  20. min-height: 100px;
  21. margin-top: 10px !important;
  22. margin-bottom: 10px !important;
  23. }
  24. .bannerTopForm > .col {
  25. min-height: 100px;
  26. padding: 10px;
  27. padding-left: 24px;
  28. }
  29. </style>