Skip to content

Commit

Permalink
fix margin between search form and results
Browse files Browse the repository at this point in the history
  • Loading branch information
enguerranws committed Nov 19, 2024
1 parent cb0b114 commit cec6e55
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions front/src/app/pages/search/SearchPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,10 @@ export const SearchPage = ({
onSearchFormSubmit(updatedValues);
}
})}
className={cx(fr.cx("fr-container"), Styles.searchFilters)}
className={cx(
fr.cx("fr-container", "fr-mb-6w"),
Styles.searchFilters,
)}
id={domElementIds.search.searchForm}
>
<SearchFilter
Expand Down Expand Up @@ -610,7 +613,7 @@ export const SearchPage = ({
{searchMade !== null && (
<div
ref={innerSearchResultWrapper}
className={fr.cx("fr-pt-6w", "fr-pb-1w")}
className={fr.cx("fr-pb-1w")}
>
<div className={fr.cx("fr-container")}>
<div
Expand Down

0 comments on commit cec6e55

Please sign in to comment.