update mobile adapter

This commit is contained in:
Zhang Minghan 2023-11-05 11:54:53 +08:00
parent dfe7bb9be2
commit 35f7874626
2 changed files with 8 additions and 3 deletions

View File

@ -13,7 +13,12 @@
border: 1px solid hsl(var(--border-hover)); border: 1px solid hsl(var(--border-hover));
background: hsl(var(--background-container)) !important; background: hsl(var(--background-container)) !important;
border-radius: var(--radius); border-radius: var(--radius);
white-space: pre-wrap;
@media (max-width: 668px) {
& {
white-space: pre-wrap;
}
}
svg { svg {
width: 16px; width: 16px;
@ -58,7 +63,7 @@
justify-content: center; justify-content: center;
z-index: 1; z-index: 1;
top: -34px; top: -34px;
right: 0px; right: 0;
user-select: none; user-select: none;
p { p {

View File

@ -8,7 +8,7 @@ import {
} from "@/utils/env.ts"; } from "@/utils/env.ts";
import { getMemory } from "@/utils/memory.ts"; import { getMemory } from "@/utils/memory.ts";
export const version = "3.6.12"; export const version = "3.6.12rc";
export const dev: boolean = getDev(); export const dev: boolean = getDev();
export const deploy: boolean = true; export const deploy: boolean = true;
export let rest_api: string = getRestApi(deploy); export let rest_api: string = getRestApi(deploy);