Title.vue 384 B

12345678910111213141516171819202122232425
  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. margin-left: 1rem;
  16. @media (max-width: 600px) {
  17. font-size: 2rem;
  18. margin-left: 1.5%;
  19. width: 97%;
  20. }
  21. }
  22. </style>