mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
e78a551098
add jetstream permissions, add dynamic inertia module loading, add shadcn components, change modals and dropdowns to shadcn dismissable layer,
18 lines
460 B
Vue
18 lines
460 B
Vue
<template>
|
|
<div class="md:col-span-1 flex justify-between">
|
|
<div class="px-4 sm:px-0">
|
|
<h3 class="text-lg font-medium text-text-primary">
|
|
<slot name="title" />
|
|
</h3>
|
|
|
|
<p class="mt-1 text-sm text-text-secondary">
|
|
<slot name="description" />
|
|
</p>
|
|
</div>
|
|
|
|
<div class="px-4 sm:px-0">
|
|
<slot name="aside" />
|
|
</div>
|
|
</div>
|
|
</template>
|