Skip to content

Commit

Permalink
ui improvements & layout simplification (#153)
Browse files Browse the repository at this point in the history
* fix: copy, layout

* fix: layout

* fix: layout simplification

* fix: show layout

* fix: text colors

* fix: decrease paddings on lg

* fix: css

* fix: margins, footer

* fix: responsive button styles

* fix: resolve merge problems in new form

* fix: footer

* fix: new form

* fix: new & show pages
  • Loading branch information
reneaaron authored Nov 1, 2023
1 parent 82dafa2 commit 680b7f7
Show file tree
Hide file tree
Showing 12 changed files with 490 additions and 269 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
views/apps/show.html
6 changes: 3 additions & 3 deletions models.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ type User struct {

type App struct {
ID uint
UserId uint `validate:"required"`
UserId uint `validate:"required"`
User User
Name string `validate:"required"`
Description string
Expand All @@ -81,7 +81,7 @@ type App struct {

type AppPermission struct {
ID uint
AppId uint `validate:"required"`
AppId uint `validate:"required"`
App App
RequestMethod string `validate:"required"`
MaxAmount int
Expand All @@ -93,7 +93,7 @@ type AppPermission struct {

type NostrEvent struct {
ID uint
AppId uint `validate:"required"`
AppId uint `validate:"required"`
App App
NostrId string `validate:"required"`
ReplyId string
Expand Down
Loading

0 comments on commit 680b7f7

Please sign in to comment.