Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmooot committed Sep 27, 2024
2 parents 72f8117 + 4c9cd89 commit 28718ca
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/info/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Contact = () => {
</Body>
</div>
</div>
<div className='flex w-full flex-col items-center justify-center gap-y-8 lg:flex-row lg:justify-between'>
<div className='mb-32 flex w-full flex-col items-center justify-center gap-y-8 lg:flex-row lg:justify-between'>
<a
id={'resume'}
href={'/'}
Expand Down
2 changes: 1 addition & 1 deletion app/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const Projects = () => {
<div className='flex w-full flex-col items-start justify-center gap-x-16 p-4 md:p-8 lg:p-16'>
<div
ref={headerContainerRef}
className='fixed left-0 top-0 z-10 flex w-full flex-row justify-center bg-transparent px-2 pt-4 sm:pr-4 md:px-8 md:pt-16 lg:px-16 xl:px-0 xl:pt-16'
className='fixed left-0 top-0 z-10 flex w-full flex-row justify-center bg-[#fcfcf4] px-2 pt-4 sm:pr-4 md:px-8 md:pt-16 lg:px-16 xl:bg-transparent xl:px-0 xl:pt-16'
>
<div className='flex w-full max-w-screen-xl flex-col gap-y-8'>
<Title id='work'>
Expand Down
3 changes: 1 addition & 2 deletions src/components/dom/icons/EmailIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export default function EmailIcon() {
return (
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 47.25 32'>
<defs></defs>
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 47.25 32' className='h-full w-full'>
<title>Email Me</title>
<g>
<g>
Expand Down
7 changes: 6 additions & 1 deletion src/components/dom/icons/GitIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
export default function GitIcon() {
return (
<svg viewBox='0 0 256 250' version='1.1' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid'>
<svg
viewBox='0 0 256 250'
xmlns='http://www.w3.org/2000/svg'
preserveAspectRatio='xMidYMid'
className='h-full w-full'
>
<title>GitHub</title>
<g>
<path
Expand Down
10 changes: 1 addition & 9 deletions src/components/dom/icons/LinkedInIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
export default function LinkedInIcon() {
return (
<svg
fill='#000000'
height='800px'
width='800px'
version='1.1'
id='Layer_1'
xmlns='http://www.w3.org/2000/svg'
viewBox='0 0 310 310'
>
<svg viewBox='0 0 310 310' xmlns='http://www.w3.org/2000/svg' className='h-full w-full'>
<title>LinkedIn</title>
<g id='XMLID_801_'>
<path
Expand Down
2 changes: 1 addition & 1 deletion src/components/dom/pages/projects/ProjectsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const ProjectList = {
</FilterButton>
)}
</div>
<div id='divider' className='h-px w-full border-t border-t-gray-500 pb-4 xl:pb-8' />
<div id='divider' className='h-px w-full border-t border-t-gray-500 xl:pb-8' />
</>
)
},
Expand Down

0 comments on commit 28718ca

Please sign in to comment.