Skip to content

Commit

Permalink
Add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMicroNova committed Jan 8, 2025
1 parent 025c10a commit db2d402
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web/src/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
}

.app-body {
padding-bottom: general.$navbar-height
}
padding-bottom: general.$navbar-height;
}
2 changes: 1 addition & 1 deletion web/src/components/StatusBars/StatusBars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
}

.snackbar {
bottom: calc(general.$navbar-height + 4px)
bottom: calc(general.$navbar-height + 4px); // Used to keep the snackbar above the navbar at the bottom as to not block controls on mobile
}
2 changes: 2 additions & 0 deletions web/src/general.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ $select-color-gray: #bdbdbd; // for preset used_last
$mute-color: #dc3545;

$page-header-height: 3rem;
// Used to ensure that fixed-positioned components don't appear on top of the navbar
// This number is the natural height of the navbar when an explicit height is not provided, and was not set to 56px arbitrarily
$navbar-height: 56px;

// fonts
Expand Down

0 comments on commit db2d402

Please sign in to comment.