Title.vue 343 B

12345678910111213141516171819202122
  1. <!-- Titre H2 -->
  2. <template>
  3. <LayoutContainer>
  4. <h2>
  5. <slot />
  6. </h2>
  7. </LayoutContainer>
  8. </template>
  9. <script setup lang="ts">
  10. </script>
  11. <style scoped lang="scss">
  12. h2 {
  13. color: var(--on-primary-color);
  14. font-weight: 600;
  15. font-size: 3rem;
  16. line-height: 3rem;
  17. margin-left: 1rem;
  18. width: 35rem;
  19. }
  20. </style>