mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-25 12:45:17 +00:00
fixes
This commit is contained in:
parent
2582e11b30
commit
435d643228
2 changed files with 6 additions and 1 deletions
|
@ -11,7 +11,7 @@
|
||||||
</v-app-content>
|
</v-app-content>
|
||||||
|
|
||||||
<v-bottom-navigation v-model="value" class="bottomNav rounded-0">
|
<v-bottom-navigation v-model="value" class="bottomNav rounded-0">
|
||||||
<v-btn v-for="(item, i) in tabs" :key="i">
|
<v-btn v-for="(item, i) in tabs" :key="i" class="navButton">
|
||||||
<span v-text="item.name" />
|
<span v-text="item.name" />
|
||||||
|
|
||||||
<v-icon v-text="item.icon" />
|
<v-icon v-text="item.icon" />
|
||||||
|
@ -30,6 +30,9 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
.navButton {
|
||||||
|
width: 20vw !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -22,3 +22,5 @@ org.gradle.jvmargs=-Xmx1536m
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
# Automatically convert third-party libraries to use AndroidX
|
# Automatically convert third-party libraries to use AndroidX
|
||||||
android.enableJetifier=true
|
android.enableJetifier=true
|
||||||
|
|
||||||
|
org.gradle.java.home=C:\\Program Files\\Java\\jre1.8.0_311
|
||||||
|
|
Loading…
Reference in a new issue