We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ed7aa6 + 093c8fe commit bc56b70Copy full SHA for bc56b70
1 file changed
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-728 w-964 items-center justify-center text-h3 text-black">
+ <div className="flex h-261 items-center justify-center text-h3 text-black md:h-1141 lg:h-728 lg:w-964">
264
등록된 게시물이 없습니다.
265
266
) : (
267
<>
268
- <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">
+ <div className="grid grid-cols-2 gap-x-8 gap-y-16 md:h-1141 md:gap-x-14 md:gap-y-32 lg:h-728 lg:grid-cols-3">
269
{allNotices.map((notice) => (
270
<div key={notice.id} className="block">
271
<Post data={notice} />
0 commit comments