fix(DeesStepper): Adjusted CSS properties in DeesStepper component
This commit is contained in:
parent
56e8d868c9
commit
d529c27a68
@ -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
|
||||||
|
|
||||||
|
@ -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'
|
||||||
}
|
}
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user