Title.vue 325 B

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