Files
speckle-server/packages/frontend-2/components/common/TitleDescription.vue
T
andrewwallacespeckle c2a95b484f refactor(ui-components): define and use new font styles (#2524)
* New Text Styles. Initial FE2 changes

* More fe2 styling classes

* Minor update

* Minor update

* Fix build

* More updates for discussion

* More styling updates

* Minor updates to inputs

* More text updates

* More font class swapping

* Revert dui3 changes

* Confirmed Lineheights

* Add story files for new text styles

* Minor copy changes

* Minor typo

* andrew/web-1371-misalignment-in-account-dropdown

* andrew/web-1374-settings-text-styles-are-not-right

* andrew/web-1375-nav-texts-should-be-14px

* andrew/web-1376-decrease-size-of-versions-header

* andrew/web-1377-version-card-title

* semibold>medium

* Measure mode

* Changes from PR

* Tweaked nav menu

* Revert prose change. Add prose-sm

---------

Co-authored-by: Mike Tasset <mike.tasset@gmail.com>
2024-07-30 15:06:48 +01:00

19 lines
460 B
Vue

<template>
<div class="flex flex-col gap-1">
<h2 class="text-heading-xl">{{ title }}</h2>
<p v-if="description" class="text-body-sm text-foreground-2">{{ description }}</p>
<p v-else class="text-body-sm text-foreground-2 italic select-none">
No description
</p>
</div>
</template>
<script setup lang="ts">
import type { Nullable } from '@speckle/shared'
defineProps<{
title: string
description?: Nullable<string>
}>()
</script>