summaryrefslogtreecommitdiff
path: root/Pages/Component/AboutDialog.razor
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-06-11 00:49:00 +1000
committerJake Mannens <jake@asger.xyz>2026-06-11 01:41:01 +1000
commit562b51d508a04fdf4866ec7f4c27db78235e5fdd (patch)
tree5441946f4fe2c57246cfc278ae5db0118519dfe6 /Pages/Component/AboutDialog.razor
parentf1a5597380a80395b743b2022c18251babb0e9d5 (diff)
Updated pages and components to use new Button componentdev
Diffstat (limited to 'Pages/Component/AboutDialog.razor')
-rw-r--r--Pages/Component/AboutDialog.razor4
1 files changed, 3 insertions, 1 deletions
diff --git a/Pages/Component/AboutDialog.razor b/Pages/Component/AboutDialog.razor
index 888040e..f696549 100644
--- a/Pages/Component/AboutDialog.razor
+++ b/Pages/Component/AboutDialog.razor
@@ -684,7 +684,9 @@
<ProgressBar @ref=progressBar />
</div>
<ButtonContainer>
- <button @onclick=Hide>Close</button>
+ <Button
+ BackgroundColor=Color.ButtonPrimary
+ OnClick=@(async () => Hide())>Close</Button>
</ButtonContainer>
</Dialog>