소스 검색

no message

KIM-JINO5 3 달 전
부모
커밋
9a13a6dd9e
2개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      app/(main)/(forum)/board/[code]/style.scss
  2. 2 0
      app/(main)/docs/page.tsx

+ 4 - 0
app/(main)/(forum)/board/[code]/style.scss

@@ -1,5 +1,9 @@
 #board {
+	position: relative;
 	padding: 25px 32px 32px 32px;
+	min-width: 270px;
+	max-width: 1920px;
+	margin: 0 auto;
 
 	h1 {
 		font-size: 22px;

+ 2 - 0
app/(main)/docs/page.tsx

@@ -1,5 +1,7 @@
 import { notFound } from 'next/navigation';
 
+export const dynamic = 'force-dynamic';
+
 export default function DocsIndex() {
 	return notFound();
 }