Skip to content

Commit

Permalink
style(about): relocate TechStack styles and update icon color (#537) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
1chooo authored Nov 30, 2024
1 parent 72780b9 commit cf9c870
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/about/tech-stack.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";

import "./tech-stack.css";
import "@/styles/about/tech-stack.css";

type TechStack = {
name: string;
Expand All @@ -24,7 +24,7 @@ const TechStackV1: React.FC<TechStackV1Props> = ( {techStacks} ) => {
<li key={category} className="service-item">
<div className="tech-stack-container">
{stacks.map((stack) => (
<div key={stack.name} className="tech-icon text-orange-yellow-crayola">
<div key={stack.name} className="tech-icon text-white-2">
{stack.icon}
</div>
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@
justify-content: center;
font-size: 2rem;
/* Adjust icon size */
color: white;
/* Icon color */
}

.icon-label {
Expand Down

0 comments on commit cf9c870

Please sign in to comment.