Skip to content

Commit

Permalink
fix: programming language bars
Browse files Browse the repository at this point in the history
  • Loading branch information
dmijatovic committed Jul 6, 2022
1 parent c38849f commit dca2a40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/components/software/AboutLanguages.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ export default function AboutLanguages({languages}: {languages: ProgramingLangua
{Object?.keys(stats)?.map((key) => {
return (
<li key={key}>
{key} <span className="text-grey-500 ml-2">{stats[key].pct}%</span>
{key} <span className="ml-2">{stats[key].pct}%</span>
<div
className="bg-grey-400"
className="bg-base-300"
style={{
width: `${stats[key].pct}%`,
height: '0.5rem',
Expand Down

0 comments on commit dca2a40

Please sign in to comment.