classic view spacing
This commit is contained in:
parent
ba1f39a9ac
commit
cda1e7bbf4
|
@ -9,6 +9,7 @@
|
|||
<script lang="ts" setup>
|
||||
import { inject, onMounted, onUnmounted, ref } from "vue";
|
||||
import { deviceKind } from "@/scripts/device-kind";
|
||||
import { ui } from "@/config";
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
|
@ -34,6 +35,10 @@ const adjust = (rect: { width: number; height: number }) => {
|
|||
margin = props.marginMin;
|
||||
return;
|
||||
}
|
||||
if ( ui === "classic" ) {
|
||||
margin = 12;
|
||||
return;
|
||||
}
|
||||
|
||||
if (
|
||||
rect.width > (props.contentMax ?? 0) ||
|
||||
|
|
|
@ -210,10 +210,6 @@ provideMetadataReceiver((info) => {
|
|||
}
|
||||
});
|
||||
|
||||
if (ui === "classic") {
|
||||
provide("shouldSpacerMin", true);
|
||||
}
|
||||
|
||||
const menuIndicated = computed(() => {
|
||||
for (const def in navbarItemDef) {
|
||||
if (def === "notifications") continue; // 通知は下にボタンとして表示されてるから
|
||||
|
|
Loading…
Reference in New Issue