Skip to content

Commit 8dd62f8

Browse files
committed
fix: steps on magaziner
1 parent e4e6386 commit 8dd62f8

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

src/pages/apps/MagazinerPage.jsx

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -722,21 +722,21 @@ const MagazinerPage = () => {
722722
</button>
723723
{bgImage && <button onClick={() => setBgImage(null)} className="w-full text-[9px] font-mono text-red-500 uppercase text-center">Clear Image</button>}
724724
</div>
725-
<div className="space-y-6">
726-
<CustomColorPicker
727-
label="Base Chromatic"
728-
value={primaryColor.hex}
729-
onChange={(hex) => setPrimaryColor({ name: 'Custom', hex })}
730-
/>
731-
732-
<CustomColorPicker
733-
label="Accent Chromatic"
734-
value={accentColor.hex}
735-
onChange={(hex) => setAccentColor({ name: 'Custom', hex })}
736-
/>
737-
</div>
738-
</div>
739-
</div>
725+
<div className="space-y-6">
726+
<CustomColorPicker
727+
label="Base Chromatic"
728+
value={primaryColor.hex}
729+
onChange={(hex) => setPrimaryColor({ name: 'Custom', hex })}
730+
/>
731+
732+
<CustomColorPicker
733+
label="Accent Chromatic"
734+
value={accentColor.hex}
735+
onChange={(hex) => setAccentColor({ name: 'Custom', hex })}
736+
/>
737+
</div>
738+
</div>
739+
</div>
740740

741741
<div className="border border-white/10 bg-white/[0.02] p-8 rounded-sm space-y-10">
742742
<h3 className="font-mono text-[10px] font-bold text-emerald-500 uppercase tracking-widest flex items-center gap-2 border-b border-white/5 pb-6">
@@ -792,13 +792,15 @@ const MagazinerPage = () => {
792792
label="Width"
793793
min={0.1}
794794
max={100}
795+
step={0.1}
795796
value={asset.width}
796797
onChange={(val) => updateAsset(asset.id, 'width', val)}
797798
/>
798799
<CustomSlider
799800
label="Height / Thickness"
800801
min={0.1}
801802
max={100}
803+
step={0.1}
802804
value={asset.height}
803805
onChange={(val) => updateAsset(asset.id, 'height', val)}
804806
/>
@@ -940,4 +942,4 @@ const MagazinerPage = () => {
940942
);
941943
};
942944

943-
export default MagazinerPage;
945+
export default MagazinerPage;

0 commit comments

Comments
 (0)