Files
speckle-server/packages/frontend-2/components/common/TitleDescription.vue
T
Benjamin Ottensten de3f180830 Fix: Project page styling polish (#4666)
* Reduce heading size on project tabs

* Adjust spacings of project title area

* Adjust workspace icon on project page

- Don't link to workspace
- Only show if viewing a project from a workspace that you're not a member of
2025-05-05 21:57:33 +02:00

18 lines
393 B
Vue

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