SectionTitle.vue 716 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!-- Titre H2 -->
  2. <template>
  3. <div class="d-flex justify-center align-center flex-column">
  4. <v-icon
  5. size="6"
  6. icon="fas fa-circle"
  7. />
  8. <h3>
  9. <slot />
  10. </h3>
  11. </div>
  12. </template>
  13. <script setup lang="ts">
  14. </script>
  15. <style scoped lang="scss">
  16. h3 {
  17. font-size: 1rem;
  18. line-height: 1rem;
  19. margin-top: 1rem;
  20. text-align: center;
  21. letter-spacing: 2.16px;
  22. text-transform: uppercase;
  23. color: var(--primary-color) !important;
  24. }
  25. .alt-theme h3 {
  26. color: var(--on-primary-color-alt) !important;
  27. }
  28. .fa-circle {
  29. margin-top: 1rem;
  30. margin-right: 1rem;
  31. color: var(--on-neutral-color-light) !important;
  32. }
  33. .alt-theme .fa-circle {
  34. color: var(--on-primary-color) !important;
  35. }
  36. </style>