diff --git a/web/apps/photos/src/components/WatchFolder.tsx b/web/apps/photos/src/components/WatchFolder.tsx index 4d2144e0c..812f54c6b 100644 --- a/web/apps/photos/src/components/WatchFolder.tsx +++ b/web/apps/photos/src/components/WatchFolder.tsx @@ -119,12 +119,11 @@ export const WatchFolder: React.FC = ({ open, onClose }) => { onClose={onClose} PaperProps={{ sx: { height: "448px", maxWidth: "414px" } }} > - - {t("WATCHED_FOLDERS")} - + + + {t("WATCHED_FOLDERS")} + + @@ -149,6 +148,10 @@ export const WatchFolder: React.FC = ({ open, onClose }) => { ); }; +const Title_ = styled("div")` + padding: 32px 16px 16px 24px; +`; + interface WatchList { watches: FolderWatch[]; removeWatch: (watch: FolderWatch) => void;