| 12345678910111213141516171819202122 |
- <!-- Titre H2 -->
- <template>
- <LayoutContainer>
- <h2>
- <slot />
- </h2>
- </LayoutContainer>
- </template>
- <script setup lang="ts">
- </script>
- <style scoped lang="scss">
- h2 {
- color: var(--on-primary-color);
- font-weight: 600;
- font-size: 3rem;
- line-height: 3rem;
- margin-left: 1rem;
- width: 35rem;
- }
- </style>
|