| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <LayoutContainer>
- <div>
- <h2 class="title" :style="{ color: titleColor }">{{ title }}</h2>
- </div>
- </LayoutContainer>
- </template>
- <script setup>
- import { defineProps } from "vue";
- const props = defineProps({
- title: String,
- titleColor: {
- type: String,
- default: "#0E2D32",
- },
- });
- </script>
- <style scoped>
- .title {
- font-weight: 600;
- font-size: 3rem;
- line-height: 3rem;
- color: inherit;
- margin-left: 1rem;
- color: var(--Vert-90, #0E2D32);
- width: 35rem;
- }
- </style>
|