From c6092d861cc3fb4d333dd47ec135474b030fb9b4 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 18 Aug 2025 12:33:26 -0400 Subject: make all sections collapsible --- src/components/Content.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 7815951..142f111 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -93,6 +93,14 @@ export function Content() { + {/* Configuration Section - only show if installed */} + {isInstalled && ( + + )} + {/* Profile Management - only show if installed */} {isInstalled && ( )} - {/* Configuration Section - only show if installed */} - {isInstalled && ( - - )} - -- cgit v1.2.3 From 119d3d7cb21fb96f220ec25f478d4b3621ae402f Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 18 Aug 2025 12:36:35 -0400 Subject: profile at top and readout in header --- src/components/Content.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 142f111..7815951 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -93,14 +93,6 @@ export function Content() { - {/* Configuration Section - only show if installed */} - {isInstalled && ( - - )} - {/* Profile Management - only show if installed */} {isInstalled && ( )} + {/* Configuration Section - only show if installed */} + {isInstalled && ( + + )} + -- cgit v1.2.3 From 3c008cfc633701ad75207f94b9c694bd217e763a Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Mon, 18 Aug 2025 12:41:41 -0400 Subject: move install uninstall button and status to bottom to buy ui realestate --- src/components/Content.tsx | 57 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 42 insertions(+), 15 deletions(-) (limited to 'src/components/Content.tsx') diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 7815951..e0adf3f 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -76,20 +76,25 @@ export function Content() { return ( - - - + {/* Show installation components at top when not fully installed */} + {!isInstalled && ( + <> + + + + + )} @@ -118,7 +123,29 @@ export function Content() { {/* Plugin Update Checker */} - {/* Nerd Stuff Button */} + + + {/* Show installation components at bottom when fully installed */} + {isInstalled && ( + <> + + + + + )} + + {/* Nerd Stuff Button */}