diff --git a/src/app/(app)/categories/[slug]/page.tsx b/src/app/(app)/categories/[slug]/page.tsx index f845bc24de..2246418abc 100644 --- a/src/app/(app)/categories/[slug]/page.tsx +++ b/src/app/(app)/categories/[slug]/page.tsx @@ -54,7 +54,7 @@ export default function Page() { > {child.title} - + {(date.getMonth() + 1).toString().padStart(2, '0')}/ {date.getDate().toString().padStart(2, '0')}/ {date.getFullYear()} diff --git a/src/app/(app)/thinking/page.tsx b/src/app/(app)/thinking/page.tsx index 655795e8da..0a849979f3 100644 --- a/src/app/(app)/thinking/page.tsx +++ b/src/app/(app)/thinking/page.tsx @@ -211,12 +211,12 @@ const List = () => {
- {item.content} + {item.content} {!!item.ref && (
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 24722ec6a4..438e05f5ee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,7 +2,6 @@ import '../styles/index.css' import type { PropsWithChildren } from 'react' -import { BrowserSupport } from './browser-support' import { init } from './init' import { InitInClient } from './InitInClient' @@ -12,7 +11,7 @@ export default async function RootLayout({ children }: PropsWithChildren) { <> {children} - + {/* */} ) } diff --git a/src/styles/tailwindcss.css b/src/styles/tailwindcss.css index 1653dad6d6..0ecb7e31c9 100644 --- a/src/styles/tailwindcss.css +++ b/src/styles/tailwindcss.css @@ -25,10 +25,15 @@ html body { .prose { max-width: 100% !important; + font-size: 1.1rem; p { @apply break-words; } + + figure img { + @apply mb-0 mt-0; + } } *:focus { @@ -40,17 +45,6 @@ html body { box-shadow: theme(colors.accent) 0px 0px 0px 1px; } -.prose { - /* :where(.image-placeholder):not(:where([class~='not-prose'] *)) { - margin-top: 2em; - margin-bottom: 2em; - } */ - - figure img { - @apply mb-0 mt-0; - } -} - html.noise body::before { position: fixed; inset: 0;