de3f180830
* 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
18 lines
393 B
Vue
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>
|