Files
speckle-server/packages/frontend-2/components/project/page/MoreActions.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

26 lines
887 B
Vue

<template>
<div class="flex flex-col">
<h2 class="text-heading-xl mb-4">Automation</h2>
<div class="grid gap-4 grid-cols-12">
<!-- <ProjectPageMoreActionsCard :class="cardWidthClasses">
<template #title>Globals</template>
<template #description>
Global variables can hold various information that's useful across the
project.
</template>
</ProjectPageMoreActionsCard> -->
<ProjectPageMoreActionsCard :class="cardWidthClasses">
<template #title>Webhooks</template>
<template #description>
If you need to use webhooks, ask the project's owner to grant you ownership.
</template>
</ProjectPageMoreActionsCard>
</div>
</div>
</template>
<script setup lang="ts">
const cardWidthClasses = computed(
() => 'col-span-12 sm:col-span-6 lg:col-span-4 xl:col-span-3'
)
</script>