fix(DeesStepper): Adjusted CSS properties in DeesStepper component

This commit is contained in:
Philipp Kunz 2024-10-05 00:01:37 +02:00
parent 56e8d868c9
commit d529c27a68
3 changed files with 11 additions and 4 deletions

View File

@ -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

View File

@ -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'
}

View File

@ -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 {