We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f032357 commit a8774b8Copy full SHA for a8774b8
src/components/Layout/ContentHeader.vue
@@ -10,7 +10,6 @@ type HeaderText = {
10
interface Props {
11
iconName: string
12
headerTexts: Array<HeaderText>
13
- detail: string
14
}
15
const props = defineProps<Props>()
16
</script>
@@ -43,9 +42,6 @@ const props = defineProps<Props>()
43
42
<span v-else>{{ headerText.title }}</span>
44
</template>
45
</h1>
46
- <p :class="$style.detail">
47
- {{ props.detail }}
48
- </p>
49
</div>
50
51
@@ -76,9 +72,4 @@ const props = defineProps<Props>()
76
72
.chevron {
77
73
display: flex;
78
74
79
-
80
-.detail {
81
- color: $color-secondary;
82
- font-size: 0.875rem;
83
-}
84
75
</style>
0 commit comments