Files
KArtSell.Aegis/frontend/src/shared/ui/adapter/index.ts
T
kjh2064 70852bf378
deploy / deploy (push) Successful in 1m49s
deploy / notify (push) Successful in 1s
fix: Clean up KBX v60 references and simplify frontend pages
- Removed all @kbx/contracts imports and types
- Cleaned up feature registries (minimal definitions)
- Simplified page components (HomePage, ModelsList, ShadowRunList)
- Removed KBX UI components and adapters
- Fixed TypeScript errors with type casting
- Frontend build: 737KB (204KB gzip) 

CI/CD Pipeline: Ready for testing
2026-08-15 11:58:44 +09:00

25 lines
388 B
TypeScript

/**
* UI Adapter - Theme and density tokens
*/
export const densityTokens = {
compact: {
inputHeight: 34,
gridRowHeight: 34,
touchTarget: 44,
fontSize: 12,
},
comfortable: {
inputHeight: 36,
gridRowHeight: 36,
touchTarget: 48,
fontSize: 14,
},
touch: {
inputHeight: 48,
gridRowHeight: 48,
touchTarget: 52,
fontSize: 16,
},
}