Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhanhthi committed Nov 19, 2024
2 parents 854f02d + ee71f72 commit 89cda04
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/(single-page)/blogs/[[...slug]]/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SkeletonPageOfPostsListTemplate } from '../../../templates/PageOfPostsL
export default function LoadingCategoryPage() {
return (
<SkeletonPageOfPostsListTemplate
postListContainerClassName="grid grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-x-6 gap-y-8 sm:gap-x-4"
postListContainerClassName="grid grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-4"
postType="PostCardWave"
numPosts={8}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(single-page)/blogs/[[...slug]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default async function BlogsHomePage({ params }: OptionalCatchAllProps) {
totalPages={totalPages}
currentPage={currentPage}
postType="PostCardWave"
postListContainerClassName="grid grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-x-6 gap-y-8 sm:gap-x-4"
postListContainerClassName="grid grid-cols-2 md:grid-cols-3 xl:grid-cols-4 gap-4"
/>
)
}
4 changes: 2 additions & 2 deletions src/app/(single-page)/notes/NotesPageList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function NotesPageList(props: NotesPageListProps) {
count={numBlogPosts}
postType="PostCardWave"
options={{
className: 'grid grid-cols-2 lg:grid-cols-3 gap-x-6 gap-y-8 sm:gap-x-4'
className: 'grid grid-cols-2 lg:grid-cols-3 gap-4'
}}
/>
}
Expand All @@ -45,7 +45,7 @@ export default function NotesPageList(props: NotesPageListProps) {
postType="PostCardWave"
postTypeOpts={defaultPostTypeOpts}
options={{
className: 'grid grid-cols-2 lg:grid-cols-3 gap-x-6 gap-y-8 sm:gap-x-4'
className: 'grid grid-cols-2 lg:grid-cols-3 gap-4'
}}
/>
</Suspense>
Expand Down
2 changes: 1 addition & 1 deletion src/app/(single-page)/notes/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function SkeletonNotesPageBody() {
count={3}
postType="PostCardWave"
options={{
className: 'grid grid-cols-2 lg:grid-cols-3 gap-x-6 gap-y-8 sm:gap-x-4',
className: 'grid grid-cols-2 lg:grid-cols-3 gap-4',
postContainerClassName: 'thi-box-code'
}}
/>
Expand Down

0 comments on commit 89cda04

Please sign in to comment.