Add margins to app-wide progress bar

This commit is contained in:
Brandon Presley 2023-11-13 16:07:12 +13:00
parent b6afbfcc17
commit 155eaddbdd
1 changed files with 6 additions and 1 deletions

View File

@ -136,7 +136,12 @@ const App = () => {
{progress > 0 && (
<ProgressBar
style={{ position: "absolute", bottom: MARGIN / 2 }}
style={{
position: "absolute",
bottom: MARGIN / 2,
left: MARGIN,
right: MARGIN,
}}
progress={progress}
/>
)}