Skip to content

Commit

Permalink
style: 🎨 IS STYLE
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonWarrenUK committed Dec 17, 2024
1 parent 29a1853 commit dc30cf6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/needs/next-actions/components/NextActionsDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ export default function NextActionsDisplay() {
const actions = getActionsForNeed(need.id);

return (
<div key={need.id} className="ml-4 mb-4">
<h4 className="font-semibold">
<div key={need.id}>
<h4 className="font-normal mb-4">
To meet a need for {changeCase(need.name, "lower")}, which actions can you take next?
</h4>

Expand Down
6 changes: 3 additions & 3 deletions src/app/needs/next-actions/components/NextActionsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export default function NextActionsSection({
<Button label={action.name}
key={action.id}
className={ mode === "destroy"
? "bg-twd-cube-red text-black"
? "bg-twd-cube-red text-black font-normal"
: highlighted
? "bg-twd-primary-purple text-black"
: "bg-gray-600 text-white"
? "bg-twd-primary-purple text-black font-normal"
: "bg-gray-600 text-white font-normal"
}
onClick={() => (mode === "destroy"
? onDeleteAction(action)
Expand Down

0 comments on commit dc30cf6

Please sign in to comment.