helloasso.vue 904 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <LayoutContainer>
  3. <v-card>
  4. <v-row>
  5. <v-col cols="12" md="4" class="d-flex justify-center">
  6. <v-img src="/images/logos/Logo-HelloAsso.svg" class="logo" />
  7. </v-col>
  8. <v-col cols="12" md="8">
  9. {{ $t('helloasso_presentation') }}
  10. </v-col>
  11. </v-row>
  12. <v-row>
  13. <v-col cols="12" class="d-flex justify-center align-center w-100 mt-6">
  14. <UiButtonHelloAssoConnect @click="onHelloAssoConnectClicked"/>
  15. </v-col>
  16. </v-row>
  17. </v-card>
  18. </LayoutContainer>
  19. </template>
  20. <script setup lang="ts">
  21. const onHelloAssoConnectClicked = () => {
  22. console.log('helloasso connect clicked')
  23. }
  24. </script>
  25. <style scoped lang="scss">
  26. .v-card {
  27. padding: 48px;
  28. max-width: 70%;
  29. margin: 36px auto;
  30. @media (max-width: 600px) {
  31. max-width: 90%;
  32. }
  33. }
  34. .logo {
  35. max-width: 80%;
  36. }
  37. </style>