Skip to content

Commit

Permalink
Move bottom padding to searchContainerInner Box
Browse files Browse the repository at this point in the history
  • Loading branch information
dgcohen committed Dec 5, 2023
1 parent 5aaed6d commit 29201ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/SearchForm/SearchForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,12 @@ const SearchForm = ({ loading }: SearchFormProps) => {

return (
<Box className={styles.searchContainer}>
<Box className={styles.searchContainerInner}>
<Box className={styles.searchContainerInner} pb="s">
{loading ? (
<SkeletonLoader
showImage={false}
showHeading={false}
contentSize={2}
pb="s"
/>
) : (
<>
Expand Down Expand Up @@ -102,7 +101,7 @@ const SearchForm = ({ loading }: SearchFormProps) => {
}}
/>
</Box>
<Box className={styles.auxSearchContainer} pb="s">
<Box className={styles.auxSearchContainer}>
<EDSLink />
{/* Temporary color update. The Header overrides the new
DS 2.X CSS color variable values. */}
Expand Down

0 comments on commit 29201ed

Please sign in to comment.