Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
HamzaJarane committed Nov 29, 2024
1 parent e2a4b15 commit 553ff4a
Show file tree
Hide file tree
Showing 4 changed files with 1,495 additions and 1,736 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const Card = lazy(() => import('@/components/Card'));

export default function App() {
return (
<div css={tw`lg:flex grid text-white bg-black w-screen`}>
<div css={tw`lg:flex grid text-white bg-black h-screen w-screen`}>
<Suspense
fallback={
<div css={tw`h-screen w-screen flex justify-center items-center`}>
Expand Down
6 changes: 5 additions & 1 deletion src/components/Cards/Experience.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ function Experience() {
</div>

<div className={'eDescription'}>
{experience.descriptions.map((desc) => <div key={desc}>&#x2022; {desc}</div>)}
{experience.descriptions.map((desc) =>
<div>
&#x2022; <span key={desc} dangerouslySetInnerHTML={{ __html: desc }} />
</div>
)}
</div>

<ul className={'eSkills'}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function Profile() {

return (
data && <>
<img src={profileImage} css={tw`fixed -top-2 z-10 lg:flex hidden lg:w-[30%]`} alt={"profileImage"} srcSet={profileImage} />
<img src={profileImage} css={tw`fixed -top-2 z-10 lg:flex hidden h-screen lg:w-[30%]`} alt={"profileImage"} srcSet={profileImage} />
<div
css={tw`w-full lg:w-[30%] z-20 bg-cover bg-gradient-to-r from-black/30 to-black flex justify-center lg:justify-start lg:items-center lg:grid`}
>
Expand Down
Loading

0 comments on commit 553ff4a

Please sign in to comment.