Title.vue 428 B

123456789101112131415161718192021222324252627
  1. <!-- Titre H2 -->
  2. <template>
  3. <LayoutContainer>
  4. <h3>
  5. <slot />
  6. </h3>
  7. </LayoutContainer>
  8. </template>
  9. <script setup lang="ts"></script>
  10. <style scoped lang="scss">
  11. h3 {
  12. color: var(--on-neutral-color);
  13. font-weight: 600;
  14. font-size: 3rem;
  15. line-height: 3rem;
  16. margin-left: 1rem;
  17. @media (max-width: 600px) {
  18. font-size: 2rem;
  19. line-height: 2rem;
  20. margin-left: 1.5%;
  21. width: 97%;
  22. }
  23. }
  24. </style>