We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a60d908 commit 550bcbaCopy full SHA for 550bcba
frontend/src/components/About/PortfolioDisplay.tsx
@@ -12,7 +12,7 @@ const PortfolioDisplay = () => {
12
<div className="flex justify-between max-w-full h-10 my-6 snap-x snap-mandatory overflow-auto hide-scrollbar">
13
{names.map((name) => (
14
<button
15
- className={`grow text-center border border-white ${name === selectedPortfolio ? "bg-blue-400" : "bg-blue-700"} p-2`}
+ className={`grow text-center border border-white ${name === selectedPortfolio ? "bg-[#3977F9]" : ""} p-2`}
16
key={`btn-${name}`}
17
onClick={() => setSelectedPortfolio(name)}
18
>
0 commit comments