1
1
mirror of https://github.com/neosubhamoy/neosubhamoy-portfolio.git synced 2025-12-20 01:09:35 +05:30

(fixed): working on section icon color not rendering + (feature): implemented dynamic socials section on footer

This commit is contained in:
2023-11-01 22:23:46 +05:30
parent 5edcf4c562
commit a6e11fc047
3 changed files with 20 additions and 36 deletions

View File

@@ -161,7 +161,7 @@ $years = create_project_years_array($conn);
//show all currently working on topics
while($working_on_topic = $working_on -> fetch_assoc()) {
echo"
<div class='w-fit my-[0.30rem] text-sm font-bold bg-bg_secondary px-3 py-1 rounded-full'><i class='".$working_on_topic['icon']."'></i> ".$working_on_topic['title']."</div>
<div class='w-fit my-[0.30rem] text-sm font-bold bg-bg_secondary px-3 py-1 rounded-full'><i class='text-base mr-1 ".$working_on_topic['icon']."' style='color: ".$working_on_topic['icon_color']."'></i> ".$working_on_topic['title']."</div>
";
}
}