fix(SW-1386): sorted out width on blocks and fixed some padding stuff

This commit is contained in:
Christian Andolf
2025-01-29 13:55:51 +01:00
parent 73c06e21c5
commit 672389e85c
3 changed files with 40 additions and 12 deletions

View File

@@ -1,5 +1,6 @@
import type { z } from "zod"
import type { fullWidthCampaignSchema } from "@/server/routers/contentstack/schemas/blocks/fullWidthCampaign"
import type {
blocksSchema,
startPageRefsSchema,
@@ -16,4 +17,6 @@ export interface StartPageRefs extends z.output<typeof startPageRefsSchema> {}
export type Block = z.output<typeof blocksSchema>
export type FullWidthCampaign = Block["full_width_campaign"]
export type FullWidthCampaign = z.output<
typeof fullWidthCampaignSchema
>["full_width_campaign"]