Skip to content

Commit

Permalink
adjust border for assignments in dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Rllyyy committed Dec 21, 2024
1 parent 8908dcf commit b319eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const Projects = () => {
{projects.map((project, index) => {
return (
<motion.article
className='flex flex-col items-center overflow-clip border border-gray-300 rounded-md lg:rounded-lg lg:flex-row lg:border-none dark:border-gray-700 lg:min-h-[650px] scroll-mt-16 md:scroll-mt-20'
className='flex flex-col items-center overflow-clip border border-gray-300 rounded-md lg:rounded-lg lg:flex-row lg:border-none dark:border-zinc-800 lg:min-h-[650px] scroll-mt-16 md:scroll-mt-20'
key={project.name}
id={project.name.toLowerCase().replaceAll(/\s+/g, "-")} //Fails for special characters if used for url
initial={{ opacity: 0, x: index % 2 !== 0 ? "15%" : "-15%" }}
Expand Down

0 comments on commit b319eb9

Please sign in to comment.