Skip to content

Commit

Permalink
fix: extension budget editor popup
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Oct 18, 2024
1 parent 317002f commit cc1e358
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
left: 0;
display: flex;

// Include margin for top/bottom banners (inherit from farmer content
// Include margin for top/bottom banners
// Inherit footer-height from farmer content or use fallback value if not defined
margin-top: 56px;
margin-bottom: var(--footer-height);
height: calc(100% - 56px - var(--footer-height));
margin-bottom: var(--footer-height, 0px);
height: calc(100% - 56px - var(--footer-height, 0px));
}

.slide-in {
Expand Down

0 comments on commit cc1e358

Please sign in to comment.