Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/cgd 36 #5

Merged
merged 23 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/TechStack/components/TechStackCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface TechStackCardProps {

export default function TechStackCard({ title, data }: TechStackCardProps) {
return (
<div className="card w-72 sm:w-96 text-primary-content bg-neutral-100 rounded-lg">
<div className="card w-72 sm:w-96 text-primary-content bg-neutral-50 rounded-lg">
<div className="flex flex-row justify-between">
<h3 className="text-xl font-semibold text-neutral-900 mt-5 ml-5 self-center">
{title}
Expand Down
6 changes: 3 additions & 3 deletions src/app/TechStack/components/TechStackContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TechStackCard } from ".";

export default function TechStackContainer() {
return (
<div className="card max-w-tech-card-container bg-primary p-10">
<div className="card max-w-tech-card-container bg-primary-100 p-10">
<ul className="grid lg:grid-cols-2 xl:grid-cols-3 grid-cols-1 gap-y-20 justify-items-stretch">
{Object.keys(techStack).map((cardType, index) => (
<li
Expand All @@ -12,8 +12,8 @@ export default function TechStackContainer() {
index % 3 === 0
? "justify-self-start"
: index % 3 === 1
? "justify-self-center"
: "justify-self-end"
? "justify-self-center"
: "justify-self-end"
}`}
>
<TechStackCard
Expand Down
12 changes: 12 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ module.exports = {
maxWidth: {
"tech-card-container": "85.5625rem",
Dan-Y-Ko marked this conversation as resolved.
Show resolved Hide resolved
},
colors: {
Dan-Y-Ko marked this conversation as resolved.
Show resolved Hide resolved
"primary-50": "#ecf4f0",
"primary-100": "#c4ded2",
"primary-200": "#a7cdbc",
"primary-300": "#7fb79d",
"primary-400": "#66a98a",
"primary-600": "#3a8663",
"primary-700": "#2d684d",
"primary-800": "#23513c",
"primary-900": "#1b3e2e",
"neutral-50": "#F1F1F1",
},
},
},
daisyui: {
Expand Down