2 Commits

Author SHA1 Message Date
23fb25dcd5 v2.12.2 2026-04-07 22:41:35 +00:00
8ddcb56f90 fix(ts_web): adjust route card section background color in dark theme 2026-04-07 22:41:35 +00:00
4 changed files with 8 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 2026-04-07 - 2.12.2 - fix(ts_web)
adjust route card section background color in dark theme
- Updates the dark theme background for route card sections from #0a0a0a to #101010 for improved visual consistency.
## 2026-04-07 - 2.12.1 - fix(ts_web)
handle slotted config section content visibility and field row borders correctly

View File

@@ -1,6 +1,6 @@
{
"name": "@serve.zone/catalog",
"version": "2.12.1",
"version": "2.12.2",
"private": false,
"description": "UI component catalog for serve.zone",
"main": "dist_ts_web/index.js",

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/catalog',
version: '2.12.1',
version: '2.12.2',
description: 'UI component catalog for serve.zone'
}

View File

@@ -296,7 +296,7 @@ export class SzRouteCard extends DeesElement {
padding: 10px 14px;
margin-bottom: 12px;
border-radius: 0 6px 6px 0;
background: ${cssManager.bdTheme('#fafafa', '#0a0a0a')};
background: ${cssManager.bdTheme('#fafafa', '#101010')};
}
.section:last-of-type {