BannerTop.vue 636 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <v-row justify="center" align="center" class="bannerTopForm">
  3. <v-col cols="3" class="ot_dark_grey ot_white--text">
  4. <slot name="bloc1"></slot>
  5. </v-col>
  6. <v-col cols="6" class="ot_white ot_grey--text">
  7. <slot name="bloc2"></slot>
  8. </v-col>
  9. <v-col cols="3" class="ot_light_grey ot_grey--text">
  10. <slot name="bloc3"></slot>
  11. </v-col>
  12. </v-row>
  13. </template>
  14. <style scoped>
  15. .bannerTopForm{
  16. min-height: 100px;
  17. margin-top: 10px !important;
  18. margin-bottom: 10px !important;
  19. }
  20. .bannerTopForm > .col{
  21. min-height: 100px;
  22. padding: 10px;
  23. padding-left: 24px;
  24. }
  25. </style>