Compare commits

...

2 Commits

Author SHA1 Message Date
68992301ff 1.1.11 2024-10-05 00:01:38 +02:00
d529c27a68 fix(DeesStepper): Adjusted CSS properties in DeesStepper component 2024-10-05 00:01:37 +02:00
4 changed files with 12 additions and 5 deletions

View File

@@ -1,5 +1,11 @@
# Changelog # 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) ## 2024-10-04 - 1.1.10 - fix(dependencies)
Reverted @webcontainer/api version Reverted @webcontainer/api version

View File

@@ -1,6 +1,6 @@
{ {
"name": "@design.estate/dees-catalog", "name": "@design.estate/dees-catalog",
"version": "1.1.10", "version": "1.1.11",
"private": false, "private": false,
"description": "A library for building components and other projects", "description": "A library for building components and other projects",
"main": "dist_ts_web/index.js", "main": "dist_ts_web/index.js",

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-catalog', name: '@design.estate/dees-catalog',
version: '1.1.10', version: '1.1.11',
description: 'A library for building components and other projects' description: 'A library for building components and other projects'
} }

View File

@@ -102,7 +102,7 @@ export class DeesStepper extends DeesElement {
transition: all 0.7s ease-in-out; transition: all 0.7s ease-in-out;
max-width: 500px; max-width: 500px;
min-height: 300px; min-height: 300px;
border-radius: 8px; border-radius: 16px;
background: ${cssManager.bdTheme('#ffffff', '#181818')}; background: ${cssManager.bdTheme('#ffffff', '#181818')};
border-top: 1px solid ${cssManager.bdTheme('#ffffff', '#181818')}; border-top: 1px solid ${cssManager.bdTheme('#ffffff', '#181818')};
color: ${cssManager.bdTheme('#333', '#fff')}; color: ${cssManager.bdTheme('#333', '#fff')};
@@ -175,8 +175,9 @@ export class DeesStepper extends DeesElement {
text-align: center; text-align: center;
padding-top: 50px; padding-top: 50px;
font-family: 'Geist Sans', sans-serif; font-family: 'Geist Sans', sans-serif;
font-size: 25px; font-size: 22px;
font-weight: 300;
font-weight: 500;
} }
.step .content { .step .content {