FAQ.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <template>
  2. <LayoutContainer>
  3. <v-row class="help-row">
  4. <v-col cols="6" class="help-col">
  5. <v-img class="help-img" src="/images/help/Help.png"/>
  6. </v-col>
  7. <v-col cols="6" class="help-col text-content">
  8. <h4 class="subtitle-team">
  9. Chez Opentalent, nous avons à coeur de répondre à vos interrogations et de vous apporter la solution faite pour vous.
  10. </h4>
  11. <v-row class="row-faq">
  12. <v-btn class="button-faq ml-6 mt-12">
  13. Nous contacter
  14. </v-btn>
  15. </v-row>
  16. </v-col>
  17. </v-row>
  18. </LayoutContainer>
  19. </template>
  20. <script setup>
  21. </script>
  22. <style scoped>
  23. .button-faq {
  24. width: 195px;
  25. height: 53px;
  26. background: #64afb7;
  27. border-radius: 6px;
  28. color: white;
  29. padding: 19px 28px;
  30. gap: 9px;
  31. font-family: "Barlow";
  32. }
  33. .help-img {
  34. margin-left: 5rem;
  35. margin-right: 3rem;
  36. height: 100%;
  37. }
  38. .subtitle-team {
  39. margin-bottom: 2rem;
  40. margin-top: 10rem;
  41. font-style: normal;
  42. font-weight: 400;
  43. font-size: 2rem;
  44. line-height: 34px;
  45. width: 35rem;
  46. color: white;
  47. }
  48. .container {
  49. margin-bottom: 1rem;
  50. margin-top: 3rem;
  51. }
  52. .help-row {
  53. align-items: stretch; /* Align items will cause the columns to match height */
  54. background: var(--Vert-90, #0E2D32);
  55. }
  56. .help-col {
  57. display: flex;
  58. flex-direction: column; /* Stack children vertically */
  59. justify-content: flex-start; /* Align children at the start */
  60. }
  61. .text-content {
  62. display: flex;
  63. flex-direction: column;
  64. justify-content: space-between; /* Spread text and button if there's extra space */
  65. }
  66. </style>