diff --git a/web/src/pages/applications/ApplicationListPage.ts b/web/src/pages/applications/ApplicationListPage.ts index b127c1815..73f0c1c5c 100644 --- a/web/src/pages/applications/ApplicationListPage.ts +++ b/web/src/pages/applications/ApplicationListPage.ts @@ -1,5 +1,5 @@ import { gettext } from "django"; -import { customElement, html, property, TemplateResult } from "lit-element"; +import { css, CSSResult, customElement, html, property, TemplateResult } from "lit-element"; import { AKResponse } from "../../api/Client"; import { TablePage } from "../../elements/table/TablePage"; @@ -38,6 +38,17 @@ export class ApplicationListPage extends TablePage { }); } + static get styles(): CSSResult[] { + return super.styles.concat(css` + tr td:first-child { + width: auto; + min-width: 0px; + text-align: center; + vertical-align: middle; + } + `); + } + columns(): TableColumn[] { return [ new TableColumn(""),