fix(dees-simple-appdash): Corrected viewTab active background color

This commit is contained in:
Philipp Kunz 2024-09-02 22:09:10 +02:00
parent 1c4fd0a2da
commit e2d3ae8949
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 2024-09-02 - 1.1.8 - fix(dees-simple-appdash)
Corrected viewTab active background color
- Corrected the background color of the viewTab in active state for better visual consistency.
## 2024-09-02 - 1.1.7 - fix(dependencies)
Update dependencies to their latest versions

View File

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

View File

@ -94,7 +94,7 @@ export class DeesSimpleAppDash extends DeesElement {
}
.viewTab:active {
background: ${cssManager.bdTheme(colors.bright.blueActive, colors.dark.blueActive)};
background: ${cssManager.bdTheme('#aaa', '#ffffff20')};
color: ${cssManager.bdTheme('#000', '#fff')};
}