Title.vue 455 B

12345678910111213141516171819202122232425262728
  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. @media (max-width: 600px) {
  19. font-size: 2rem;
  20. line-height: 2rem;
  21. margin-left: 1.5%;
  22. width: 97%;
  23. }
  24. }
  25. </style>