Skip to content

Commit

Permalink
fix styling on filters to match figma (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
sigridge authored Oct 12, 2023
1 parent 0c8666e commit b3ac2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/DepartmentFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function DepartmentFilter() {
<div>
<div className="flex flex-col gap-2">
<p className="body-small">Avdelinger</p>
<div className="flex flew-row flex-wrap gap-2">
<div className="flex flew-row flex-wrap gap-2 w-52">
{data?.map((department, index) => (
<FilterButton key={index} filterName={department.name} />
))}
Expand Down

0 comments on commit b3ac2cd

Please sign in to comment.