Skip to content

Commit

Permalink
Made the logo column smaller so that it right-aligns better.
Browse files Browse the repository at this point in the history
  • Loading branch information
CraigHawker committed Nov 10, 2023
1 parent f4dfca2 commit 3339db5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@ public virtual IDashboardContent GetDashboardContent()
contentCell.InnerContent = content;

// Add the logo.
row.AddCell(this.VaultApplication.DashboardLogo);
row.AddCell(this.VaultApplication.DashboardLogo)
.Styles
.AddOrUpdate("width", "1%"); // Make it small.

// The root will now be the table, not the collection.
root = table;
Expand Down

0 comments on commit 3339db5

Please sign in to comment.