show arrow on mini download list

This commit is contained in:
SpikeHD
2022-05-13 23:47:02 -07:00
parent 2bc3ac9c53
commit 07c153d28c
2 changed files with 17 additions and 0 deletions

View File

@@ -42,4 +42,20 @@ body {
position: absolute;
top: 40%;
left: 12%;
}
.arrow-down {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 50px solid transparent;
/* Colored section */
border-top: 50px solid #fff;
position: fixed;
top: 73%;
left: 15%;
}

View File

@@ -71,6 +71,7 @@ class App extends React.Component<IProps, IState> {
}}>
<DownloadList downloadManager={downloadHandler} />
</MiniDialog>
<div className="arrow-down"></div>
</div> : null
}