fix(dees-statsgrid): add tablet breakpoint to render stats grid as three columns

This commit is contained in:
2026-03-11 18:04:55 +00:00
parent 2504251707
commit 66d64bf476
3 changed files with 13 additions and 1 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-catalog',
version: '3.47.0',
version: '3.47.1',
description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.'
}

View File

@@ -804,6 +804,11 @@ export class DeesStatsGrid extends DeesElement {
}
`,
// Container-responsive: when this statsgrid is narrow
cssManager.cssForTablet(css`
.stats-grid {
grid-template-columns: repeat(3, 1fr);
}
`, this),
cssManager.cssForPhablet(css`
:host {
--tile-padding: 12px;