fix: remove line-clamp from tailwind config

This commit is contained in:
Prad Nukala
2024-12-08 21:45:37 -05:00
parent 38ca7b246b
commit 5c3966a9d6
10 changed files with 162 additions and 37 deletions
@@ -21,16 +21,14 @@ templ ProfileFormView(turnstileSiteKey string) {
}
}
templ LinkCredentialView(req LinkCredentialRequest) {
templ LinkCredentialView(addr string, handle string) {
@layout.Root("Register | Sonr.ID") {
@layout.Container() {
@text.Header("Link a PassKey", "This will be used to login to your vault.")
@form.Form("/register/finish", "POST", form.PasskeyInput("passkey"), "65", false) {
@details.PropertyList() {
@details.Property("Address", req.Address, "wallet")
@details.Property("Handle", req.Handle, "at-sign")
@details.Property("Platform", req.Platform, "device-iphone")
@details.Property("Model", req.DeviceModel, "laptop")
@details.Property("Address", addr, "wallet")
@details.Property("Handle", handle, "at-sign")
}
}
}