fix(ui): remove padding gaps around sidebars

Remove md:p-4 padding from root container to eliminate gaps between screen edges and sidebars
This commit is contained in:
Gigi
2025-10-13 23:26:25 +02:00
parent 7b1e3be39b
commit f882b63359

View File

@@ -238,7 +238,7 @@ function App() {
<EventStoreProvider eventStore={eventStore}>
<AccountsProvider manager={accountManager}>
<BrowserRouter>
<div className="min-h-screen p-0 md:p-4 max-w-none m-0 relative">
<div className="min-h-screen p-0 max-w-none m-0 relative">
<AppRoutes relayPool={relayPool} showToast={showToast} />
</div>
</BrowserRouter>