Skip to content

Commit

Permalink
padding and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeFulton committed Jan 29, 2024
1 parent 1779303 commit 0868354
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/v4/card/ToolCardSimple.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import gumletLoader from "@/components/new-index/gumletLoader";

const ToolCardSimple = ({ posts, type, columns }) => {
return (
<div className={`grid grid-cols-1 ${columns?columns:'lg:grid-cols-3'} gap-6 p-1 w-full flex-wrap`}>
<div className={`grid grid-cols-1 ${columns?columns:'lg:grid-cols-3'} gap-5 p-1 w-full flex-wrap`}>
{posts.map((post, i) => {
let title, slug, coverImage, tags;

Expand Down
2 changes: 1 addition & 1 deletion components/v4/layout/PostGroupRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const PostGroupRow = ({ largePost, smallPosts, description,title,topicObject })

<div className="flex flex-col justify-center mb-6 md:mb-0 px-6 md:px-6">
<div>
<h2 className="text-lg md:text-xl mb-1 text-[#0F1F40] font-semibold font-inter max-w-md leading-[32px]">
<h2 className="text-lg md:text-2xl mb-1 text-[#0F1F40] font-semibold font-inter max-w-md leading-[32px]">
{intl.formatMessage({ id: title })}
</h2>
<p>
Expand Down
2 changes: 0 additions & 2 deletions pages/topics.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,6 @@ export default function Index({
<SectionDivider py="py-1" transparentLine={true} />
{/* <Container maxWidth="max-w-[1320px]"> */}
{TOPICS_PAGE?.map((topic, index) => {
console.log(topic)
console.log(topicRes[topic.slug])
return (
<div key={`section_${index}`}>
<TopicIndexSection
Expand Down

0 comments on commit 0868354

Please sign in to comment.