diff --git a/NUXT/components/Comments/mainCommentRenderer.vue b/NUXT/components/Comments/mainCommentRenderer.vue
index 40303ec..973bbcc 100644
--- a/NUXT/components/Comments/mainCommentRenderer.vue
+++ b/NUXT/components/Comments/mainCommentRenderer.vue
@@ -32,7 +32,7 @@
-
+
@@ -57,26 +58,26 @@
diff --git a/NUXT/components/ExtendedComponents/swipeableBottomSheet/_variables.scss b/NUXT/components/ExtendedComponents/swipeableBottomSheet/_variables.scss
deleted file mode 100644
index 96c8ce2..0000000
--- a/NUXT/components/ExtendedComponents/swipeableBottomSheet/_variables.scss
+++ /dev/null
@@ -1,2 +0,0 @@
-@import "~vuetify/src/styles/settings/_variables";
-$bottom-sheet-inset-width: 70% !default;
diff --git a/NUXT/components/ExtendedComponents/swipeableBottomSheet/index.js b/NUXT/components/ExtendedComponents/swipeableBottomSheet/index.js
deleted file mode 100644
index e82b45a..0000000
--- a/NUXT/components/ExtendedComponents/swipeableBottomSheet/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import swipeableBottomSheet from "./swipeableBottomSheet";
-
-export { swipeableBottomSheet };
-export default swipeableBottomSheet;
diff --git a/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.js b/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.js
deleted file mode 100644
index a4fc272..0000000
--- a/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.js
+++ /dev/null
@@ -1,34 +0,0 @@
-import "./swipeableBottomSheet.sass";
-
-// Extensions
-import { VDialog } from "vuetify/lib";
-
-/* @vue/component */
-export default VDialog.extend({
- name: "swipeable-bottom-sheet",
-
- props: {
- inset: Boolean,
- maxWidth: [String, Number],
- transition: {
- type: String,
- default: "bottom-sheet-transition",
- },
- },
-
- computed: {
- classes() {
- return {
- ...VDialog.options.computed.classes.call(this),
- "swipeable-bottom-sheet": true,
- "swipeable-bottom-sheet--inset": this.inset,
- };
- },
- contentClasses() {
- return {
- "swipeable-bottom-sheet__content": true,
- "swipeable-bottom-sheet__content--active": this.isActive,
- };
- },
- },
-});
diff --git a/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.sass b/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.sass
deleted file mode 100644
index 24c597d..0000000
--- a/NUXT/components/ExtendedComponents/swipeableBottomSheet/swipeableBottomSheet.sass
+++ /dev/null
@@ -1,44 +0,0 @@
-@import './_variables.scss'
-
-// Transition
-.bottom-sheet-transition
- &-enter
- transform: translateY(100%)
-
- &-leave-to
- transform: translateY(100%)
-
-// Block
-
-.swipeable-bottom-sheet
-
- &.v-dialog
- align-self: flex-end
- border-radius: 0
- flex: 0 1 auto
- margin: 0
- overflow: visible
-
- &.swipeable-bottom-sheet--inset
- max-width: $bottom-sheet-inset-width
-
- @media #{map-get($display-breakpoints, 'xs-only')}
- max-width: none
-
- &.v-dialog:not(.v-dialog--fullscreen)
- max-height: 100%
- height: 100%
-
-.swipeable-bottom-sheet__content
- align-items: center
- display: flex
- justify-content: center
- pointer-events: none
- position: absolute
- transition: .2s map-get($transition, 'fast-in-fast-out'), z-index 1ms
- width: 100%
- height: 100%
- outline: none
- inset: 0
-
-
diff --git a/NUXT/components/bottomNavigation.vue b/NUXT/components/bottomNavigation.vue
index ab7cc66..94f5b76 100644
--- a/NUXT/components/bottomNavigation.vue
+++ b/NUXT/components/bottomNavigation.vue
@@ -6,15 +6,20 @@
@@ -31,7 +36,7 @@
: 'var(--v-background-darken4)',
}"
:class="
- tabSelection == i
+ tabSelection == i && $store.state.tweaks.navigationShift
? $vuetify.theme.dark
? 'tab primary darken-4'
: 'tab primary lighten-4'
@@ -53,7 +58,7 @@
v-if="$store.state.tweaks.navigationIcons === 2"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
- viewBox="0 0 20 20"
+ viewBox="0 0 21 21"
height="1.5rem"
width="1.5rem"
class="mt-1"
@@ -64,7 +69,7 @@
v-if="$store.state.tweaks.navigationIcons === 3"
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
- viewBox="0 0 32 32"
+ viewBox="0 0 33 33"
height="1.5rem"
width="1.5rem"
class="mt-1"
@@ -74,6 +79,7 @@