Skip to content

Commit

Permalink
Merge pull request #297 from open-pv/289-formatting-loading-bar-message
Browse files Browse the repository at this point in the history
Add margin to message text #289
  • Loading branch information
FlorianK13 authored Sep 15, 2024
2 parents eb02ef9 + c4eece5 commit 5bf0830
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/Template/LoadingBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ const LoadingBar = ({ progress }) => {
height: "100%",
}}
>
<p>{t("loadingMessage.tip" + shownTip.toString())}</p>
<p style={{ margin: "20px" }}>
{t("loadingMessage.tip" + shownTip.toString())}
</p>
<div style={{ width: "80%", maxWidth: "600px", margin: "0 auto" }}>
<Progress value={progress} width="100%" hasStripe={true} />
</div>
Expand Down

0 comments on commit 5bf0830

Please sign in to comment.