diff --git a/src/ui/components/common/DownloadSection.css b/src/ui/components/common/DownloadSection.css index 12fc82a..0c47ded 100644 --- a/src/ui/components/common/DownloadSection.css +++ b/src/ui/components/common/DownloadSection.css @@ -9,4 +9,21 @@ .DownloadSection { overflow: hidden; width: 100%; + + margin: 6px 0px; +} + +.DownloadTitle { + display: flex; + flex-direction: row; +} + +.DownloadPath { + text-overflow: ellipsis; + width: 250px; + overflow: hidden; +} + +.DownloadStatus { + text-align: right; } \ No newline at end of file diff --git a/src/ui/components/common/DownloadSection.tsx b/src/ui/components/common/DownloadSection.tsx index 0f954b9..eea7e39 100644 --- a/src/ui/components/common/DownloadSection.tsx +++ b/src/ui/components/common/DownloadSection.tsx @@ -21,7 +21,10 @@ export default class DownloadSection extends React.Component { render() { return (
- {this.getFilenameFromPath()} - {this.props.downloadManager.getDownloadSize(this.props.downloadName)} +
+
{this.getFilenameFromPath()}
+
- {this.props.downloadManager.getDownloadSize(this.props.downloadName)}
+