feat(mail): center-align action button in email template
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2
apps/admin/auto-imports.d.ts
vendored
2
apps/admin/auto-imports.d.ts
vendored
@@ -113,6 +113,7 @@ declare global {
|
||||
const prefixWithPlus: typeof import('./src/@core/utils/formatters')['prefixWithPlus']
|
||||
const provide: typeof import('vue')['provide']
|
||||
const provideLocal: typeof import('@vueuse/core')['provideLocal']
|
||||
const queryClientConfig: typeof import('./src/lib/query-client')['queryClientConfig']
|
||||
const reactify: typeof import('@vueuse/core')['reactify']
|
||||
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
|
||||
const reactive: typeof import('vue')['reactive']
|
||||
@@ -483,6 +484,7 @@ declare module 'vue' {
|
||||
readonly prefixWithPlus: UnwrapRef<typeof import('./src/@core/utils/formatters')['prefixWithPlus']>
|
||||
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
||||
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
|
||||
readonly queryClientConfig: UnwrapRef<typeof import('./src/lib/query-client')['queryClientConfig']>
|
||||
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
|
||||
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
|
||||
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
||||
|
||||
@@ -47,3 +47,26 @@
|
||||
.bg-custom-background {
|
||||
background-color: rgb(var(--v-table-header-color));
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Vuexy (Bootstrap 5) parity — spacing + horizontal rules in cards
|
||||
// (e.g. form-layouts-horizontal “Form separator”)
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
.my-6 {
|
||||
margin-block-end: 1.5rem !important;
|
||||
margin-block-start: 1.5rem !important;
|
||||
}
|
||||
|
||||
.mx-n6 {
|
||||
margin-inline-end: -1.5rem !important;
|
||||
margin-inline-start: -1.5rem !important;
|
||||
}
|
||||
|
||||
// BS: `.card hr { color: var(--bs-card-border-color); }` — Vuetify card border token
|
||||
.v-card .v-card-text hr {
|
||||
border: 0;
|
||||
border-top: 1px solid rgba(var(--v-border-color), var(--v-border-opacity));
|
||||
color: rgba(var(--v-border-color), var(--v-border-opacity));
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user