Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
poisonox committed Jan 8, 2025
1 parent b96a274 commit 71884e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@

/* view */
.view-container {
@apply flex justify-end items-center mt-5 fixed bottom-8 right-3;
@apply flex justify-end items-center mt-5 fixed bottom-14 right-3;
}

.view-text {
Expand Down
2 changes: 1 addition & 1 deletion components/startupcard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function StartupCard({ post }: { post: StartupTypeCard }) {

return (
<>
<li className="startup-card group">
<li className="startup-card group mb-4">
<div className="flex-between">
<p className="startup_card_date">{formatDate(_createdAt)}</p>
<div className="flex gap-1.5">
Expand Down
2 changes: 1 addition & 1 deletion components/userStartups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default async function UserStartup({id}:{id:string}){
return (<>
{
startups.length > 0? startups.map((startup:StartupTypeCard)=> {
return <StartupCard key={startup._id} post={startup} />
return <StartupCard key={startup._id} post={startup} />
}): <div className="no-result">No Post Yet </div>
}
</>)
Expand Down

0 comments on commit 71884e1

Please sign in to comment.