mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-26 01:37:19 +00:00
Remove chat bubble and fix dock icon sizing for better usability
Remove Chatbot component from App.tsx and adjust dock icon sizes in os.tsx to fit containers. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 279f1558-c0e3-40e4-8217-be7e9f4c6eca Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Event-Id: 12d0732e-a7dc-4ae4-9d8b-9e68f0699715 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/b984cb14-1d19-4944-922b-bc79e821ed35/279f1558-c0e3-40e4-8217-be7e9f4c6eca/iz083Bf Replit-Helium-Checkpoint-Created: true
This commit is contained in:
parent
ace85acfdd
commit
a46454df67
2 changed files with 4 additions and 3 deletions
|
|
@ -27,7 +27,6 @@ import AdminNotifications from "@/pages/admin-notifications";
|
||||||
import AeThexOS from "@/pages/os";
|
import AeThexOS from "@/pages/os";
|
||||||
import Network from "@/pages/network";
|
import Network from "@/pages/network";
|
||||||
import NetworkProfile from "@/pages/network-profile";
|
import NetworkProfile from "@/pages/network-profile";
|
||||||
import { Chatbot } from "@/components/Chatbot";
|
|
||||||
|
|
||||||
function Router() {
|
function Router() {
|
||||||
return (
|
return (
|
||||||
|
|
@ -66,7 +65,6 @@ function App() {
|
||||||
<TutorialProvider>
|
<TutorialProvider>
|
||||||
<Toaster />
|
<Toaster />
|
||||||
<Router />
|
<Router />
|
||||||
<Chatbot />
|
|
||||||
</TutorialProvider>
|
</TutorialProvider>
|
||||||
</AuthProvider>
|
</AuthProvider>
|
||||||
</QueryClientProvider>
|
</QueryClientProvider>
|
||||||
|
|
|
||||||
|
|
@ -1674,7 +1674,10 @@ function Taskbar({ windows, activeWindowId, apps, time, showStartMenu, user, isA
|
||||||
}}
|
}}
|
||||||
data-testid={`dock-${appId}`}
|
data-testid={`dock-${appId}`}
|
||||||
>
|
>
|
||||||
<div className="w-4 h-4" style={{ color: isOpen ? clearanceTheme.accent : 'rgba(255,255,255,0.7)' }}>
|
<div
|
||||||
|
className="w-4 h-4 flex items-center justify-center [&>svg]:w-4 [&>svg]:h-4"
|
||||||
|
style={{ color: isOpen ? clearanceTheme.accent : 'rgba(255,255,255,0.7)' }}
|
||||||
|
>
|
||||||
{app.icon}
|
{app.icon}
|
||||||
</div>
|
</div>
|
||||||
{isOpen && (
|
{isOpen && (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue