Skip to content

Commit

Permalink
Fix footer padding (#2402)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlmii authored Feb 25, 2024
1 parent 09cda89 commit ceae04d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@

::deep .logs-summary-layout > .total-items-footer {
grid-area: foot;
padding-bottom: calc(var(--design-unit) * 2px);
}

::deep .wrap {
Expand Down
1 change: 0 additions & 1 deletion src/Aspire.Dashboard/Components/Pages/Traces.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@

::deep.traces-layout > .total-items-footer {
grid-area: foot;
padding-bottom: calc(var(--design-unit) * 2px);
}

::deep fluent-progress-ring::part(background) {
Expand Down
5 changes: 5 additions & 0 deletions src/Aspire.Dashboard/wwwroot/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -315,3 +315,8 @@ fluent-switch.table-switch::part(label) {
[data-theme="dark"] .property-grid-container fluent-accordion-item fluent-badge::part(control) {
background-color: var(--neutral-fill-active);
}

.total-items-footer {
padding-left: calc(var(--design-unit) * 2px);
padding-bottom: calc(var(--design-unit) * 2px);
}

0 comments on commit ceae04d

Please sign in to comment.