mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 00:33:50 +02:00
move settings menu position
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { onBeforeMount } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
import AdvancedTab from './components/Tabs/AdvancedTab.vue';
|
||||
@@ -41,4 +42,12 @@
|
||||
import WristOverlayTab from './components/Tabs/WristOverlayTab.vue';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
onBeforeMount(() => {
|
||||
const menuItem = document.querySelector('li[role="menuitem"].is-active');
|
||||
|
||||
if (menuItem) {
|
||||
menuItem.classList.remove('is-active');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user