From 8eeaecd857c474bdd0bc7b3815c08815fb466765 Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Sun, 26 Apr 2026 21:22:57 -0700 Subject: [PATCH] fix(radius): bump shared RADIUS_PRESETS so S/M/L are visible on real elements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The actual radius picker shown to users for images, sections, and containers comes from ImageStylePanel etc. via the shared RADIUS_PRESETS — not from each component's own settings panel. Earlier fix only bumped ImageBlock's local scale, which is a different control. Bump shared scale: S=8px, M=16px, L=32px, Full=9999px (unchanged). Existing saved sites are unaffected — only future preset clicks pick up the new values. Co-Authored-By: Claude Opus 4.7 (1M context) --- craft/src/constants/presets.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/craft/src/constants/presets.ts b/craft/src/constants/presets.ts index 5d5095b..812d2cd 100644 --- a/craft/src/constants/presets.ts +++ b/craft/src/constants/presets.ts @@ -58,9 +58,9 @@ export const SPACING_PRESETS = [ export const RADIUS_PRESETS = [ { label: 'None', value: '0' }, - { label: 'S', value: '4px' }, - { label: 'M', value: '8px' }, - { label: 'L', value: '16px' }, + { label: 'S', value: '8px' }, + { label: 'M', value: '16px' }, + { label: 'L', value: '32px' }, { label: 'Full', value: '9999px' }, ];