oops
authorTheSaminator <TheSaminator@users.noreply.github.com>
Sat, 12 Feb 2022 14:54:42 +0000 (09:54 -0500)
committerTheSaminator <TheSaminator@users.noreply.github.com>
Sat, 12 Feb 2022 14:54:42 +0000 (09:54 -0500)
src/jvmMain/kotlin/starshipfights/info/views_main.kt

index fcb89f5c374e201ba83e656630dea3e728fed2b1..2f1db15364b58b982099a27d9338c6622631df4e 100644 (file)
@@ -46,17 +46,17 @@ suspend fun ApplicationCall.newUsersPage(): HTML.() -> Unit {
        return page("New Users", standardNavBar(), IndexSidebar) {
                section {
                        h1 { +"New Users" }
-               }
-               div {
-                       style = "text-align:center"
-                       newUsers.forEach { newUser ->
-                               div {
-                                       style = "display:inline-block;width:24%"
-                                       img(src = newUser.discordAvatarUrl) { style = "width:100%" }
-                                       p {
-                                               style = "text-align:center"
-                                               a(href = "/user/${newUser.id}") {
-                                                       +newUser.profileName
+                       div {
+                               style = "text-align:center"
+                               newUsers.forEach { newUser ->
+                                       div {
+                                               style = "display:inline-block;width:24%"
+                                               img(src = newUser.discordAvatarUrl) { style = "width:100%" }
+                                               p {
+                                                       style = "text-align:center"
+                                                       a(href = "/user/${newUser.id}") {
+                                                               +newUser.profileName
+                                                       }
                                                }
                                        }
                                }