diff --git a/changelog.md b/changelog.md index 127e202..310e6a5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2024-10-05 - 1.1.11 - fix(DeesStepper) +Adjusted CSS properties in DeesStepper component + +- Increased border-radius from 8px to 16px for step container elements +- Adjusted font-size and font-weight for the title in the step container to improve readability + ## 2024-10-04 - 1.1.10 - fix(dependencies) Reverted @webcontainer/api version diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index ac7da5b..36d2f6c 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.1.10', + version: '1.1.11', description: 'A library for building components and other projects' } diff --git a/ts_web/elements/dees-stepper.ts b/ts_web/elements/dees-stepper.ts index 53b61a8..24798ba 100644 --- a/ts_web/elements/dees-stepper.ts +++ b/ts_web/elements/dees-stepper.ts @@ -102,7 +102,7 @@ export class DeesStepper extends DeesElement { transition: all 0.7s ease-in-out; max-width: 500px; min-height: 300px; - border-radius: 8px; + border-radius: 16px; background: ${cssManager.bdTheme('#ffffff', '#181818')}; border-top: 1px solid ${cssManager.bdTheme('#ffffff', '#181818')}; color: ${cssManager.bdTheme('#333', '#fff')}; @@ -175,8 +175,9 @@ export class DeesStepper extends DeesElement { text-align: center; padding-top: 50px; font-family: 'Geist Sans', sans-serif; - font-size: 25px; - font-weight: 300; + font-size: 22px; + + font-weight: 500; } .step .content {