Skip to content

Commit 77f09dc

Browse files
committed
fix: Removed scrollbars in the body content
1 parent ef05607 commit 77f09dc

3 files changed

Lines changed: 4 additions & 11 deletions

File tree

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "Wowthing Sync",
11-
"version": "0.2.2"
11+
"version": "0.2.3"
1212
},
1313
"tauri": {
1414
"systemTray": {

src/components/AppFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<footer>
2+
<footer class="text-slate-800 dark:text-slate-200 bg-gray-100 dark:bg-gray-900">
33
<p>Version {{ appVersion }} | Built by <a href="https://raider.io/user/failcookie" target="_blank">Failcookie</a> | Powered by <a href="https://wowthing.org" target="_blank">WoWthing</a></p>
44
</footer>
55
</template>

src/layouts/default.vue

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
<template>
2-
<div class="main">
2+
<div>
33
<AppHeader />
44
<main>
55
<slot />
66
</main>
77
<AppFooter />
88
</div>
9-
</template>
10-
11-
<style scoped>
12-
.main {
13-
overflow: scroll;
14-
height: 91vh;
15-
}
16-
</style>
9+
</template>

0 commit comments

Comments
 (0)