fix: default button size, margin, padding

This commit is contained in:
TheodorTomas
2026-02-10 19:18:58 +07:00
parent 1fcdad6b76
commit 444632e83d
2 changed files with 8 additions and 8 deletions

View File

@@ -129,11 +129,11 @@ export const STYLE_DEFAULTS: TProjectStyling = {
buttonBgColor: { light: _colors["buttonBgColor.light"] },
buttonTextColor: { light: _colors["buttonTextColor.light"] },
buttonBorderRadius: 8,
buttonHeight: 36,
buttonFontSize: 14,
buttonHeight: "auto",
buttonFontSize: 16,
buttonFontWeight: 500,
buttonPaddingX: 16,
buttonPaddingY: 8,
buttonPaddingX: 12,
buttonPaddingY: 12,
// Options
optionBgColor: { light: _colors["optionBgColor.light"] },

View File

@@ -108,16 +108,16 @@
--fb-label-opacity: 1;
/* ── Buttons ───────────────────────────────────────────────────────── */
--fb-button-height: 36px;
--fb-button-height: auto;
--fb-button-width: auto;
--fb-button-font-family: inherit;
--fb-button-font-size: 14px;
--fb-button-font-size: 16px;
--fb-button-font-weight: 500;
--fb-button-border-radius: 8px;
--fb-button-bg-color: #414b5a;
--fb-button-text-color: #ffffff;
--fb-button-padding-x: 16px;
--fb-button-padding-y: 8px;
--fb-button-padding-x: 12px;
--fb-button-padding-y: 12px;
/* ── Inputs ────────────────────────────────────────────────────────── */
--fb-input-bg-color: #f3f4f6;