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-15 10:45:44 +1000
commit7410aa03b71af31d789e8f43cbeb0ad3b771d6b9 (patch)
tree7c8aef8330c343938fb77bde71990945e14c5161 /Pages/Component/AboutDialog.razor
parentb40ec1bad71651ff11650cfc38b829bd25822cce (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>