Skip to content

Commit

Permalink
feat: remove letter-spacing [gh-36]
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubfolta committed Jun 20, 2024
1 parent f684f66 commit 30b188f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/(app)/people/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export default function People() {

<table className="text-sm table-auto">
<thead>
<tr className="h-14 mx-4 text-xs uppercase text-navy-500 *:px-4 *:font-medium *:text-start tracking-[1px]">
<tr className="h-14 mx-4 text-xs uppercase text-navy-500 *:px-4 *:font-medium *:text-start">
<th>Employee</th>
<th>Ladder</th>
<th className="[&]:text-end">Current Band</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const EmployeeCard = ({ employee }: EmployeeCardProps) => {
/>
</div>
<div className="flex flex-col justify-center">
<h3 className="text-navy-900 text-sm font-medium leading-[22.4px] tracking-wider">{name}</h3>
<h3 className="text-navy-900 text-sm font-medium leading-[22.4px]">{name}</h3>
<p className="text-navy-600 text-sm">{title}</p>
</div>
</div>
Expand Down

0 comments on commit 30b188f

Please sign in to comment.