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