diff --git a/src/renderer/src/SegmentList.tsx b/src/renderer/src/SegmentList.tsx index 4d7d9a8d..a8a31678 100644 --- a/src/renderer/src/SegmentList.tsx +++ b/src/renderer/src/SegmentList.tsx @@ -1,5 +1,5 @@ -import { memo, useMemo, useRef, useCallback, useState, SetStateAction, Dispatch, ReactNode, MouseEventHandler, CSSProperties, useEffect } from 'react'; -import { FaYinYang, FaSave, FaPlus, FaMinus, FaTag, FaSortNumericDown, FaAngleRight, FaRegCheckCircle, FaRegCircle } from 'react-icons/fa'; +import { memo, useMemo, useRef, useCallback, useState, SetStateAction, Dispatch, MouseEventHandler, CSSProperties, useEffect } from 'react'; +import { FaYinYang, FaSave, FaPlus, FaMinus, FaTag, FaSortNumericDown, FaAngleRight, FaRegCheckCircle, FaRegCircle, FaTimes } from 'react-icons/fa'; import { AiOutlineSplitCells } from 'react-icons/ai'; import { motion } from 'framer-motion'; import { useTranslation, Trans } from 'react-i18next'; @@ -608,16 +608,15 @@ function SegmentList({ exit={{ x: width }} transition={springAnimation} > -
- + {getHeader()} + + - - {getHeader()}
diff --git a/src/renderer/src/components/BatchFilesList.tsx b/src/renderer/src/components/BatchFilesList.tsx index 1230709c..18259c16 100644 --- a/src/renderer/src/components/BatchFilesList.tsx +++ b/src/renderer/src/components/BatchFilesList.tsx @@ -17,9 +17,7 @@ const iconStyle = { flexShrink: 0, color: 'var(--gray-12)', cursor: 'pointer', - paddingTop: 3, - paddingBottom: 3, - padding: '3px 5px', + padding: '.2em .3em', }; function BatchFilesList({ selectedBatchFiles, filePath, width, batchFiles, setBatchFiles, onBatchFileSelect, batchListRemoveFile, closeBatch, onMergeFilesClick, onBatchConvertToSupportedFormatClick, onDrop }: { @@ -90,12 +88,12 @@ function BatchFilesList({ selectedBatchFiles, filePath, width, batchFiles, setBa onDrop={onDrop} >
-
{t('Batch file list')}{batchFiles.length > 0 && ` (${batchFiles.length})`}
+
{t('Batch file list')}{batchFiles.length > 0 && ` (${batchFiles.length})`}
- +