Skip to content

Commit

Permalink
Make app navigation settings pixel perfect-ish
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst committed Sep 14, 2022
1 parent 4bb374f commit d12ebe1
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ export default {
<style lang="scss" scoped>
#app-settings {
margin-top: auto;
padding: calc(var(--default-grid-baseline, 4px) * 2);
padding: 3px;
&__header {
box-sizing: border-box;
margin: 0 3px 3px 3px;
.settings-button {
display: flex;
Expand Down Expand Up @@ -132,6 +133,10 @@ export default {
&__content {
display: block;
padding: 10px;
/* prevent scrolled contents from stopping too early */
margin-bottom: -3px;
/* restrict height of settings and make scrollable */
max-height: 300px;
overflow-y: auto;
Expand Down

0 comments on commit d12ebe1

Please sign in to comment.