Skip to content

Commit

Permalink
webapp: optimize body bottom padding and length
Browse files Browse the repository at this point in the history
long forms, when scrolled to the bottom, would leave no space between
the bottom of the viewport and the buttons, which is unpleasent.

short views would still createa large (high) body, for apparently no
reason.
  • Loading branch information
schlimmchen committed Oct 29, 2024
1 parent accbcbd commit ec69660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineComponent({
<style>
/* Show it is fixed to the top */
body {
min-height: 75rem;
padding-bottom: 1rem;
padding-top: 4.5rem;
}
</style>

0 comments on commit ec69660

Please sign in to comment.