BannerTop.vue 730 B

12345678910111213141516171819202122232425262728
  1. <!-- Troisième bandeau en partant du haut, contenant entre autre le numéro SIRET de l'organisation -->
  2. <template>
  3. <v-row justify="center" align="center" class="bannerTopForm">
  4. <v-col cols="3" class="ot_dark_grey ot_white--text">
  5. <slot name="block1" />
  6. </v-col>
  7. <v-col cols="6" class="ot_white ot_grey--text">
  8. <slot name="block2" />
  9. </v-col>
  10. <v-col cols="3" class="ot_light_grey ot_grey--text">
  11. <slot name="block3" />
  12. </v-col>
  13. </v-row>
  14. </template>
  15. <style scoped>
  16. .bannerTopForm{
  17. min-height: 100px;
  18. margin-top: 10px !important;
  19. margin-bottom: 10px !important;
  20. }
  21. .bannerTopForm > .col{
  22. min-height: 100px;
  23. padding: 10px;
  24. padding-left: 24px;
  25. }
  26. </style>