Tweak New Transaction - Items page styles so content fits on narrow screens
All checks were successful
Docker Image CI / build (push) Successful in 3m5s

This commit is contained in:
2024-10-14 18:26:07 +01:00
parent e5478a426b
commit 79850c46b5
4 changed files with 44 additions and 6 deletions

View File

@ -176,6 +176,12 @@
{
string?[] classes = [
"table__header",
column.Align switch
{
Align.Center => "table__header--align-center",
Align.End => "table__header--align-end",
_ => null,
},
column.Sortable ? "table__header--sortable" : null,
HeaderClass,
];