From f990cc6df9c72de4dcef326d69b55d44d08483a1 Mon Sep 17 00:00:00 2001 From: Chase Poirier Date: Fri, 4 Oct 2024 10:55:16 -0600 Subject: [PATCH] fix: columns uses incorrect default value --- packages/core/src/definitions/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/definitions/styles.ts b/packages/core/src/definitions/styles.ts index 58e01472c..84af983f4 100644 --- a/packages/core/src/definitions/styles.ts +++ b/packages/core/src/definitions/styles.ts @@ -335,7 +335,7 @@ export const containerBuiltInStyles: VariableDefinitions = { displayName: 'Margin', type: 'Text', group: 'style', - description: 'The margin of the section', + description: 'The margin of the container', defaultValue: '0 auto 0 auto', }, cfMaxWidth: { @@ -497,7 +497,7 @@ export const columnsBuiltInStyles: VariableDefinitions = { type: 'Text', group: 'style', description: 'The margin of the columns', - defaultValue: '0 0 0 0', + defaultValue: '0 auto 0 auto', }, cfWidth: { displayName: 'Width',