diff --git a/web/apps/photos/src/components/Collections/CollectionListBar.tsx b/web/apps/photos/src/components/Collections/CollectionListBar.tsx index 2e073e3c41..47b61d0a4b 100644 --- a/web/apps/photos/src/components/Collections/CollectionListBar.tsx +++ b/web/apps/photos/src/components/Collections/CollectionListBar.tsx @@ -14,11 +14,11 @@ import PeopleIcon from "@mui/icons-material/People"; import PushPin from "@mui/icons-material/PushPin"; import { Box, IconButton, Typography, styled } from "@mui/material"; import Tooltip from "@mui/material/Tooltip"; +import { CollectionTile } from "components/Collections/styledComponents"; import { - CollectionListBarWrapper, - CollectionListWrapper, - CollectionTile, -} from "components/Collections/styledComponents"; + IMAGE_CONTAINER_MAX_WIDTH, + MIN_COLUMNS, +} from "components/PhotoList/constants"; import { t } from "i18next"; import memoize from "memoize-one"; import React, { useEffect, useRef, useState } from "react"; @@ -193,6 +193,22 @@ export const CollectionListBar: React.FC = ({ ); }; +const CollectionListWrapper = styled(Box)` + position: relative; + overflow: hidden; + height: 86px; + width: 100%; +`; + +const CollectionListBarWrapper = styled(Box)` + padding: 0 24px; + @media (max-width: ${IMAGE_CONTAINER_MAX_WIDTH * MIN_COLUMNS}px) { + padding: 0 4px; + } + margin-bottom: 16px; + border-bottom: 1px solid ${({ theme }) => theme.palette.divider}; +`; + interface ItemData { collectionSummaries: CollectionSummary[]; activeCollectionID?: number; diff --git a/web/apps/photos/src/components/Collections/styledComponents.ts b/web/apps/photos/src/components/Collections/styledComponents.ts index 253b089d3e..16f2369a78 100644 --- a/web/apps/photos/src/components/Collections/styledComponents.ts +++ b/web/apps/photos/src/components/Collections/styledComponents.ts @@ -1,25 +1,6 @@ import { Overlay } from "@ente/shared/components/Container"; import { Box, styled } from "@mui/material"; -import { - IMAGE_CONTAINER_MAX_WIDTH, - MIN_COLUMNS, -} from "components/PhotoList/constants"; -export const CollectionListWrapper = styled(Box)` - position: relative; - overflow: hidden; - height: 86px; - width: 100%; -`; - -export const CollectionListBarWrapper = styled(Box)` - padding: 0 24px; - @media (max-width: ${IMAGE_CONTAINER_MAX_WIDTH * MIN_COLUMNS}px) { - padding: 0 4px; - } - margin-bottom: 16px; - border-bottom: 1px solid ${({ theme }) => theme.palette.divider}; -`; export const CollectionInfoBarWrapper = styled(Box)` width: 100%;