feat: hide description table on smaller screens
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M internal/components/combined.go → internal/components/combined.go
@@ -29,7 +29,7 @@ return Table( THead( Tr( Th(Scope("col"), g.Text("Attribute")), - Th(Scope("col"), g.Text("Description")), + Th(Scope("col"), Class("description"), g.Text("Description")), g.If(config.DevMode, Th(Scope("col"), Class("score"), g.Text("Score")), ),@@ -45,7 +45,7 @@ Td(Class("description"), CombinedData(hit.Data), ), g.If(config.DevMode, - Td( + Td(Class("score"), Score(hit), ), ),