refactor: split CommandFooter, perf tweaks

- extracted drawer modal to CommandDrawer (~180 lines)
- CommandFooter now under 270 lines
- replaced transition-all with specific props (colors, transform, etc)
- should reduce repaints on hover states
This commit is contained in:
N1C4T
2025-12-31 22:11:19 +04:00
parent 4a70f293c1
commit c3b737f901
47 changed files with 363 additions and 712 deletions

View File

@@ -33,7 +33,7 @@ export interface AppData {
category: Category;
iconUrl: string;
targets: Partial<Record<DistroId, string>>;
/** Markdown content shown when app unavailable. Same message for all distros. */
// Markdown shown when app unavailable (same for all distros)
unavailableReason?: string;
}