Skip to content

Commit

Permalink
Some spacial tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdyoung3 committed Jan 25, 2024
1 parent 5b85ced commit 1219ac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/patterns/elements/select-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const SelectList = ({options, label, multiple, ariaLabelledby, ...props}: Props)
<div className="relative h-fit" {...outsideClickProps}>
<button
{...getButtonProps()}
className="w-full border shadow-md rounded-lg text-left p-6"
className="w-full border shadow-md rounded-lg text-left py-7 px-5"
aria-labelledby={labeledBy}
>
<div className="flex flex-wrap">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ const StudyPlacesFiltering = ({items}: {items: StudyPlace[]}) => {
onChange={(event, value: SelectValue<string, boolean>) => setSelectedFeatured(value as string[])}
/>

<div className="flex flex-col pl-12 mr-80">
<div className="flex flex-col pl-12 mr-80 mt-20">
<button type="submit" className="button">
Submit
</button>

<a href="" className="text-center mt-16" onClick={handleReset}>
<a href="" className="text-center mt-20" onClick={handleReset}>
Clear Filters
</a>
</div>
Expand Down

0 comments on commit 1219ac4

Please sign in to comment.