💄 Optimize styles
This commit is contained in:
		| @@ -82,7 +82,7 @@ export default function PostItem(props: { | ||||
|             <i class="fa-solid fa-retweet me-2"></i> | ||||
|             Reposted a post | ||||
|           </p> | ||||
|           <div class="border border-base-200"> | ||||
|           <div class="border border-base-200 mb-5"> | ||||
|             <PostItem | ||||
|               noControl | ||||
|               post={props.post.repost_to} | ||||
| @@ -96,7 +96,7 @@ export default function PostItem(props: { | ||||
|             <i class="fa-solid fa-reply me-2"></i> | ||||
|             Replied a post | ||||
|           </p> | ||||
|           <div class="border border-base-200"> | ||||
|           <div class="border border-base-200 mb-5"> | ||||
|             <PostItem | ||||
|               noControl | ||||
|               post={props.post.reply_to} | ||||
|   | ||||
| @@ -11,6 +11,8 @@ import { Route, Router } from "@solidjs/router"; | ||||
| import "@fortawesome/fontawesome-free/css/all.css"; | ||||
|  | ||||
| import RootLayout from "./layouts/RootLayout.tsx"; | ||||
| import Feed from "./pages/feed.tsx"; | ||||
| import Global from "./pages/global.tsx"; | ||||
| import { UserinfoProvider } from "./stores/userinfo.tsx"; | ||||
| import { WellKnownProvider } from "./stores/wellKnown.tsx"; | ||||
|  | ||||
| @@ -20,8 +22,8 @@ render(() => ( | ||||
|   <WellKnownProvider> | ||||
|     <UserinfoProvider> | ||||
|       <Router root={RootLayout}> | ||||
|         <Route path="/" component={lazy(() => import("./pages/feed.tsx"))}> | ||||
|           <Route path="/" component={lazy(() => import("./pages/global.tsx"))} /> | ||||
|         <Route path="/" component={Feed}> | ||||
|           <Route path="/" component={Global} /> | ||||
|           <Route path="/realms" component={lazy(() => import("./pages/realms.tsx"))} /> | ||||
|           <Route path="/realms/:realmId" component={lazy(() => import("./pages/realm.tsx"))} /> | ||||
|           <Route path="/accounts/:accountId" component={lazy(() => import("./pages/account.tsx"))} /> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user