Skip to content

Commit

Permalink
Merge pull request #1637 from fdm-monster/fix/settings-page-layout-is…
Browse files Browse the repository at this point in the history
…sues

fix: improve settings page layout
  • Loading branch information
davidzwa authored Oct 26, 2024
2 parents af47bc2 + 3e906f8 commit 7cea9b8
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release notes

## Client 23/10/2024 1.6.2

Fixes:

- Improve the layout of navigation and content. Now it wont wrap and its vertically stretched.

## Client 23/10/2024 1.6.1

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fdm-monster/client",
"version": "1.6.1",
"version": "1.6.2",
"author": "David Zwart",
"license": "AGPL-3.0-or-later",
"repository": {
Expand Down
18 changes: 10 additions & 8 deletions src/components/Settings/SettingsView.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-row no-gutters>
<div>
<v-navigation-drawer :permanent="true">
<div style="height: calc(100vh - 64px)">
<v-row no-gutters class="fill-height" style="padding: 0">
<v-navigation-drawer :permanent="true" width="240" style="flex-shrink: 0; padding: 0">
<v-list-item>
<v-list-item-content>
<v-list-item-title class="text-h6"> Settings</v-list-item-title>
<v-list-item-subtitle> Adjust your Fdm Monster</v-list-item-subtitle>
<v-list-item-title class="text-h6">Settings</v-list-item-title>
<v-list-item-subtitle>Adjust your Fdm Monster</v-list-item-subtitle>
</v-list-item-content>
</v-list-item>

Expand All @@ -30,10 +30,12 @@
</v-list-item>
</v-list>
</v-navigation-drawer>
</div>

<router-view class="grow" />
</v-row>
<v-col class="d-flex fill-height">
<router-view class="grow" />
</v-col>
</v-row>
</div>
</template>

<script lang="ts" setup>
Expand Down

0 comments on commit 7cea9b8

Please sign in to comment.