Skip to content

Commit ee787d6

Browse files
committed
increase filter text size and increase the gap #5
1 parent c1db0bf commit ee787d6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/FilterSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const FilterSwitch = ({ name, filters, setFilters, count }: FilterSwitchProps) =
2929

3030
return (
3131
<FormControl>
32-
<FormLabel htmlFor={`filter-${name}`}>{title()}</FormLabel>
32+
<FormLabel fontSize='lg' htmlFor={`filter-${name}`}>{title()}</FormLabel>
3333
<Switch isChecked={isChecked} onChange={handleChange} id={`filter-${name}`} />
3434
</FormControl>
3535
);

src/components/Selections.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ If your graph has more than 2000 nodes, it might take a while to load. Please wa
217217
Filter by group
218218
</Heading>
219219

220-
<HStack spacing={2}>
220+
<HStack spacing={4}>
221221
{groups.map((group: string) => (
222222
<FilterSwitch
223223
key={group}

0 commit comments

Comments
 (0)