| 12345678910111213141516171819202122232425262728 |
- <!-- 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;
- @media (max-width: 600px) {
- font-size: 2rem;
- line-height: 2rem;
- margin-left: 1.5%;
- width: 97%;
- }
- }
- </style>
|