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