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