Skip to content

Commit

Permalink
fix links and remove windows reference
Browse files Browse the repository at this point in the history
  • Loading branch information
DidierRLopes committed Nov 26, 2023
1 parent 1f2aad9 commit 0226f03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
slug: gamestonk-terminal-the-next-best-thing-after-bloomberg-terminal.md
slug: gamestonk-terminal-the-next-best-thing-after-bloomberg-terminal
title: Gamestonk Terminal - The next best thing after Bloomberg Terminal
date: 2021-03-14
image: https://github.com/DidierRLopes/my-website/assets/88618738/f9508a33-fcee-4056-a611-a4422890bf8b
Expand Down
16 changes: 7 additions & 9 deletions src/components/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,13 @@ export default function Projects() {
<div className="mx-auto mt-8">
{projects.map((project) => (
<div className='flex my-4 mx-2 border-[1px] p-2 rounded border-[#2e8555]'>
{window.innerWidth > 768 && (
<div className='w-[300px] flex justify-center items-center'>
<img
src={project.image}
alt={project.title}
style={{ width: '200px', objectFit: 'cover' }}
/>
</div>
)}
<div className='w-[300px] flex justify-center items-center'>
<img
src={project.image}
alt={project.title}
className="w-[200px] object-cover"
/>
</div>
<div className='flex flex-col justify-between flex-grow'>
<div>
<div className="title md:text-lg font-bold">
Expand Down

0 comments on commit 0226f03

Please sign in to comment.