We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 306deb8 + 03b70db commit 3ed7aa6Copy full SHA for 3ed7aa6
src/pages/notice/NoticeList.tsx
@@ -260,12 +260,12 @@ export default function NoticeList({ search = '' }: { search?: string }) {
260
</div>
261
262
{shouldShowEmpty && allNotices.length === 0 ? (
263
- <div className="flex h-500 items-center justify-center text-h3 text-black">
+ <div className="flex h-728 w-964 items-center justify-center text-h3 text-black">
264
등록된 게시물이 없습니다.
265
266
) : (
267
<>
268
- <div className="grid grid-cols-2 gap-x-8 gap-y-16 md:gap-x-14 md:gap-y-32 lg:grid-cols-3">
+ <div className="grid h-728 grid-cols-2 gap-x-8 gap-y-16 md:gap-x-14 md:gap-y-32 lg:grid-cols-3">
269
{allNotices.map((notice) => (
270
<div key={notice.id} className="block">
271
<Post data={notice} />
0 commit comments