about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Dev/ModalTest.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-02-05 13:14:06 +0100
committerRory& <root@rory.gay>2025-02-05 13:14:06 +0100
commit70d22bd1067e83a0e273ae4ed1b931973fecd8d1 (patch)
tree6dc36646307f716c1e63558b6d6c1914a033fbe5 /MatrixUtils.Web/Pages/Dev/ModalTest.razor
parentVarious cleanup, rewrite history viewer (diff)
downloadMatrixUtils-70d22bd1067e83a0e273ae4ed1b931973fecd8d1.tar.xz
Update ArcaneLibs to fix modal windows
Diffstat (limited to '')
-rw-r--r--MatrixUtils.Web/Pages/Dev/ModalTest.razor12
1 files changed, 12 insertions, 0 deletions
diff --git a/MatrixUtils.Web/Pages/Dev/ModalTest.razor b/MatrixUtils.Web/Pages/Dev/ModalTest.razor
new file mode 100644

index 0000000..665f548 --- /dev/null +++ b/MatrixUtils.Web/Pages/Dev/ModalTest.razor
@@ -0,0 +1,12 @@ +@page "/Dev/ModalTest" + +<PageTitle>Modal test</PageTitle> + +<h3>Rory&::MatrixUtils - Modal test</h3> +<hr/> +@for (int i = 0; i < 10; i++) +{ + <ModalWindow X="i*75" Y="i*75"> + <h1>Hello, world!</h1> + </ModalWindow> +}