2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div ref="el" class="hiyeyicy" :class="{ wide: !narrow }">
|
|
|
|
<div v-if="!narrow || currentPage?.route.name == null" class="nav">
|
|
|
|
<MkSpacer :content-max="700" :margin-min="16">
|
|
|
|
<div class="lxpfedzu">
|
|
|
|
<div class="banner">
|
|
|
|
<img
|
|
|
|
:src="$instance.iconUrl || '/favicon.ico'"
|
|
|
|
alt=""
|
|
|
|
class="icon"
|
|
|
|
/>
|
|
|
|
</div>
|
2021-10-10 10:48:07 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkInfo
|
|
|
|
v-if="thereIsUnresolvedAbuseReport"
|
|
|
|
warn
|
|
|
|
class="info"
|
|
|
|
>{{ i18n.ts.thereIsUnresolvedAbuseReportWarning }}
|
|
|
|
<MkA to="/admin/abuses" class="_link">{{
|
|
|
|
i18n.ts.check
|
|
|
|
}}</MkA></MkInfo
|
|
|
|
>
|
|
|
|
<MkInfo v-if="noMaintainerInformation" warn class="info"
|
|
|
|
>{{ i18n.ts.noMaintainerInformationWarning }}
|
|
|
|
<MkA to="/admin/settings" class="_link">{{
|
|
|
|
i18n.ts.configure
|
|
|
|
}}</MkA></MkInfo
|
|
|
|
>
|
|
|
|
<MkInfo v-if="noBotProtection" warn class="info"
|
|
|
|
>{{ i18n.ts.noBotProtectionWarning }}
|
|
|
|
<MkA to="/admin/security" class="_link">{{
|
|
|
|
i18n.ts.configure
|
|
|
|
}}</MkA></MkInfo
|
|
|
|
>
|
|
|
|
<MkInfo v-if="noEmailServer" warn class="info"
|
|
|
|
>{{ i18n.ts.noEmailServerWarning }}
|
|
|
|
<MkA to="/admin/email-settings" class="_link">{{
|
|
|
|
i18n.ts.configure
|
|
|
|
}}</MkA></MkInfo
|
|
|
|
>
|
|
|
|
<MkInfo v-if="updateAvailable" warn class="info"
|
|
|
|
>{{ i18n.ts.updateAvailable }}
|
|
|
|
<a
|
2023-07-03 00:18:30 +02:00
|
|
|
href="https://codeberg.org/firefish/firefish/releases"
|
2023-04-08 02:01:42 +02:00
|
|
|
target="_bank"
|
|
|
|
class="_link"
|
|
|
|
>{{ i18n.ts.check }}</a
|
|
|
|
></MkInfo
|
|
|
|
>
|
2021-10-10 10:48:07 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkSuperMenu :def="menuDef" :grid="narrow"></MkSuperMenu>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
<div v-if="!(narrow && currentPage?.route.name == null)" class="main">
|
|
|
|
<RouterView />
|
|
|
|
</div>
|
2021-04-22 15:29:33 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {
|
|
|
|
defineAsyncComponent,
|
|
|
|
inject,
|
|
|
|
nextTick,
|
|
|
|
onMounted,
|
|
|
|
onUnmounted,
|
|
|
|
onActivated,
|
|
|
|
provide,
|
|
|
|
watch,
|
|
|
|
ref,
|
|
|
|
} from "vue";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import MkSuperMenu from "@/components/MkSuperMenu.vue";
|
|
|
|
import MkInfo from "@/components/MkInfo.vue";
|
|
|
|
import { scroll } from "@/scripts/scroll";
|
|
|
|
import { instance } from "@/instance";
|
|
|
|
import { version } from "@/config";
|
|
|
|
import { $i } from "@/account";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { lookupUser } from "@/scripts/lookup-user";
|
2023-04-11 19:03:25 +02:00
|
|
|
import { lookupFile } from "@/scripts/lookup-file";
|
|
|
|
import { lookupInstance } from "@/scripts/lookup-instance";
|
2023-04-11 19:07:03 +02:00
|
|
|
import { indexPosts } from "@/scripts/index-posts";
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defaultStore } from "@/store";
|
|
|
|
import { useRouter } from "@/router";
|
|
|
|
import {
|
|
|
|
definePageMetadata,
|
|
|
|
provideMetadataReceiver,
|
|
|
|
setPageMetadata,
|
|
|
|
} from "@/scripts/page-metadata";
|
2020-02-16 18:21:27 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const isEmpty = (x: string | null) => x == null || x === "";
|
2023-03-26 12:22:56 +02:00
|
|
|
const el = ref<HTMLElement | null>(null);
|
2022-06-20 10:38:49 +02:00
|
|
|
const router = useRouter();
|
2021-10-23 21:03:07 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const indexInfo = {
|
|
|
|
title: i18n.ts.controlPanel,
|
2023-04-08 02:01:42 +02:00
|
|
|
icon: "ph-gear-six ph-bold ph-lg",
|
2022-05-17 18:32:21 +02:00
|
|
|
hideHeader: true,
|
|
|
|
};
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
provide("shouldOmitHeaderTitle", false);
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
let INFO = $ref(indexInfo);
|
|
|
|
let childInfo = $ref(null);
|
|
|
|
let narrow = $ref(false);
|
|
|
|
let view = $ref(null);
|
|
|
|
let pageProps = $ref({});
|
2023-04-08 02:01:42 +02:00
|
|
|
let noMaintainerInformation =
|
|
|
|
isEmpty(instance.maintainerName) || isEmpty(instance.maintainerEmail);
|
|
|
|
let noBotProtection =
|
|
|
|
!instance.disableRegistration &&
|
|
|
|
!instance.enableHcaptcha &&
|
|
|
|
!instance.enableRecaptcha;
|
2022-06-21 12:48:28 +02:00
|
|
|
let noEmailServer = !instance.enableEmail;
|
|
|
|
let thereIsUnresolvedAbuseReport = $ref(false);
|
2022-09-14 19:32:39 +02:00
|
|
|
let updateAvailable = $ref(false);
|
2022-07-20 12:59:27 +02:00
|
|
|
let currentPage = $computed(() => router.currentRef.value.child);
|
2022-06-21 12:48:28 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
os.api("admin/abuse-user-reports", {
|
|
|
|
state: "unresolved",
|
2022-06-21 12:48:28 +02:00
|
|
|
limit: 1,
|
2023-04-08 02:01:42 +02:00
|
|
|
}).then((reports) => {
|
2022-09-16 00:03:00 +02:00
|
|
|
if (reports?.length > 0) thereIsUnresolvedAbuseReport = true;
|
2022-06-21 12:48:28 +02:00
|
|
|
});
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-10-26 07:31:19 +02:00
|
|
|
if (defaultStore.state.showAdminUpdates) {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.api("latest-version").then((res) => {
|
|
|
|
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ""));
|
|
|
|
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ""));
|
2023-01-10 17:58:24 +01:00
|
|
|
if (cleanRes > cleanVersion) {
|
2022-10-26 07:31:19 +02:00
|
|
|
updateAvailable = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2022-09-14 19:32:39 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const NARROW_THRESHOLD = 600;
|
|
|
|
const ro = new ResizeObserver((entries, observer) => {
|
|
|
|
if (entries.length === 0) return;
|
|
|
|
narrow = entries[0].borderBoxSize[0].inlineSize < NARROW_THRESHOLD;
|
|
|
|
});
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const menuDef = $computed(() => [
|
|
|
|
{
|
|
|
|
title: i18n.ts.quickAction,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
type: "button",
|
|
|
|
icon: "ph-magnifying-glass ph-bold ph-lg",
|
|
|
|
text: i18n.ts.lookup,
|
|
|
|
action: lookup,
|
|
|
|
},
|
|
|
|
...(instance.disableRegistration
|
|
|
|
? [
|
|
|
|
{
|
|
|
|
type: "button",
|
|
|
|
icon: "ph-user-plus ph-bold ph-lg",
|
|
|
|
text: i18n.ts.invite,
|
|
|
|
action: invite,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: []),
|
2023-04-14 05:11:39 +02:00
|
|
|
...($i.isAdmin
|
|
|
|
? [
|
|
|
|
{
|
|
|
|
type: "button",
|
|
|
|
icon: "ph-list-magnifying-glass ph-bold ph-lg",
|
|
|
|
text: i18n.ts.indexPosts,
|
|
|
|
action: indexPosts,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: []),
|
2023-04-08 02:01:42 +02:00
|
|
|
],
|
2023-03-29 22:30:02 +02:00
|
|
|
},
|
|
|
|
{
|
2023-04-08 02:01:42 +02:00
|
|
|
title: i18n.ts.administration,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
icon: "ph-gauge ph-bold ph-lg",
|
|
|
|
text: i18n.ts.dashboard,
|
|
|
|
to: "/admin/overview",
|
|
|
|
active: currentPage?.route.name === "overview",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-users ph-bold ph-lg",
|
|
|
|
text: i18n.ts.users,
|
|
|
|
to: "/admin/users",
|
|
|
|
active: currentPage?.route.name === "users",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-smiley ph-bold ph-lg",
|
|
|
|
text: i18n.ts.customEmojis,
|
|
|
|
to: "/admin/emojis",
|
|
|
|
active: currentPage?.route.name === "emojis",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-planet ph-bold ph-lg",
|
|
|
|
text: i18n.ts.federation,
|
|
|
|
to: "/admin/federation",
|
|
|
|
active: currentPage?.route.name === "federation",
|
|
|
|
},
|
|
|
|
{
|
2023-06-23 03:11:25 +02:00
|
|
|
icon: "ph-queue ph-bold ph-lg",
|
2023-04-08 02:01:42 +02:00
|
|
|
text: i18n.ts.jobQueue,
|
|
|
|
to: "/admin/queue",
|
|
|
|
active: currentPage?.route.name === "queue",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-cloud ph-bold ph-lg",
|
|
|
|
text: i18n.ts.files,
|
|
|
|
to: "/admin/files",
|
|
|
|
active: currentPage?.route.name === "files",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-megaphone-simple ph-bold ph-lg",
|
|
|
|
text: i18n.ts.announcements,
|
|
|
|
to: "/admin/announcements",
|
|
|
|
active: currentPage?.route.name === "announcements",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-money ph-bold ph-lg",
|
|
|
|
text: i18n.ts.ads,
|
|
|
|
to: "/admin/ads",
|
|
|
|
active: currentPage?.route.name === "ads",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-warning-circle ph-bold ph-lg",
|
|
|
|
text: i18n.ts.abuseReports,
|
|
|
|
to: "/admin/abuses",
|
|
|
|
active: currentPage?.route.name === "abuses",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
...($i?.isAdmin
|
|
|
|
? [
|
|
|
|
{
|
|
|
|
title: i18n.ts.settings,
|
|
|
|
items: [
|
|
|
|
{
|
|
|
|
icon: "ph-gear-six ph-bold ph-lg",
|
|
|
|
text: i18n.ts.general,
|
|
|
|
to: "/admin/settings",
|
|
|
|
active: currentPage?.route.name === "settings",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-envelope-simple-open ph-bold ph-lg",
|
|
|
|
text: i18n.ts.emailServer,
|
|
|
|
to: "/admin/email-settings",
|
|
|
|
active:
|
|
|
|
currentPage?.route.name === "email-settings",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-cloud ph-bold ph-lg",
|
|
|
|
text: i18n.ts.objectStorage,
|
|
|
|
to: "/admin/object-storage",
|
|
|
|
active:
|
|
|
|
currentPage?.route.name === "object-storage",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-lock ph-bold ph-lg",
|
|
|
|
text: i18n.ts.security,
|
|
|
|
to: "/admin/security",
|
|
|
|
active: currentPage?.route.name === "security",
|
|
|
|
},
|
|
|
|
{
|
2023-07-14 02:22:35 +02:00
|
|
|
icon: "ph-arrows-merge ph-bold ph-lg",
|
2023-04-08 02:01:42 +02:00
|
|
|
text: i18n.ts.relays,
|
|
|
|
to: "/admin/relays",
|
|
|
|
active: currentPage?.route.name === "relays",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-plug ph-bold ph-lg",
|
|
|
|
text: i18n.ts.integration,
|
|
|
|
to: "/admin/integrations",
|
|
|
|
active: currentPage?.route.name === "integrations",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-prohibit ph-bold ph-lg",
|
|
|
|
text: i18n.ts.instanceBlocking,
|
|
|
|
to: "/admin/instance-block",
|
|
|
|
active:
|
|
|
|
currentPage?.route.name === "instance-block",
|
|
|
|
},
|
2023-04-08 07:54:25 +02:00
|
|
|
{
|
|
|
|
icon: "ph-hash ph-bold ph-lg",
|
|
|
|
text: i18n.ts.hiddenTags,
|
|
|
|
to: "/admin/hashtags",
|
|
|
|
active: currentPage?.route.name === "hashtags",
|
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
{
|
|
|
|
icon: "ph-ghost ph-bold ph-lg",
|
|
|
|
text: i18n.ts.proxyAccount,
|
|
|
|
to: "/admin/proxy-account",
|
|
|
|
active: currentPage?.route.name === "proxy-account",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
icon: "ph-database ph-bold ph-lg",
|
|
|
|
text: i18n.ts.database,
|
|
|
|
to: "/admin/database",
|
|
|
|
active: currentPage?.route.name === "database",
|
|
|
|
},
|
2023-05-13 15:41:36 +02:00
|
|
|
{
|
|
|
|
icon: "ph-flask ph-bold ph-lg",
|
|
|
|
text: i18n.ts._experiments.title,
|
|
|
|
to: "/admin/experiments",
|
|
|
|
active: currentPage?.route.name === "experiments",
|
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
]
|
|
|
|
: []),
|
|
|
|
]);
|
2020-02-10 15:17:42 +01:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
watch(narrow, () => {
|
2022-07-20 12:59:27 +02:00
|
|
|
if (currentPage?.route.name == null && !narrow) {
|
2023-04-08 02:01:42 +02:00
|
|
|
router.push("/admin/overview");
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
|
|
|
});
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
onMounted(() => {
|
2023-03-26 12:22:56 +02:00
|
|
|
ro.observe(el.value);
|
2022-05-17 18:32:21 +02:00
|
|
|
|
2023-03-26 12:22:56 +02:00
|
|
|
narrow = el.value.offsetWidth < NARROW_THRESHOLD;
|
2022-07-20 12:59:27 +02:00
|
|
|
if (currentPage?.route.name == null && !narrow) {
|
2023-04-08 02:01:42 +02:00
|
|
|
router.push("/admin/overview");
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-03-26 12:22:56 +02:00
|
|
|
onActivated(() => {
|
|
|
|
narrow = el.value.offsetWidth < NARROW_THRESHOLD;
|
|
|
|
|
|
|
|
if (!narrow && currentPage?.route.name == null) {
|
2023-04-08 02:01:42 +02:00
|
|
|
router.replace("/admin/overview");
|
2023-03-26 12:22:56 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
onUnmounted(() => {
|
|
|
|
ro.disconnect();
|
|
|
|
});
|
|
|
|
|
2023-03-19 12:28:19 +01:00
|
|
|
watch(router.currentRef, (to) => {
|
|
|
|
if (to.route.path === "/admin" && to.child?.route.name == null && !narrow) {
|
2023-04-08 02:01:42 +02:00
|
|
|
router.replace("/admin/overview");
|
2023-03-19 12:28:19 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
provideMetadataReceiver((info) => {
|
|
|
|
if (info == null) {
|
2022-05-17 18:32:21 +02:00
|
|
|
childInfo = null;
|
|
|
|
} else {
|
2022-06-20 10:38:49 +02:00
|
|
|
childInfo = info;
|
2022-05-17 18:32:21 +02:00
|
|
|
}
|
2022-06-20 10:38:49 +02:00
|
|
|
});
|
2020-08-09 08:51:02 +02:00
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const invite = () => {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.api("admin/invite")
|
|
|
|
.then((x) => {
|
|
|
|
os.alert({
|
|
|
|
type: "info",
|
|
|
|
text: x.code,
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
os.alert({
|
|
|
|
type: "error",
|
|
|
|
text: err,
|
|
|
|
});
|
2022-05-17 18:32:21 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-04-11 19:12:17 +02:00
|
|
|
async function lookupNote() {
|
|
|
|
const { canceled, result: q } = await os.inputText({
|
|
|
|
title: i18n.ts.noteId,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
os.api(
|
|
|
|
"notes/show",
|
|
|
|
q.startsWith("http://") || q.startsWith("https://")
|
|
|
|
? { url: q.trim() }
|
2023-07-06 03:28:27 +02:00
|
|
|
: { noteId: q.trim() },
|
2023-04-11 19:12:17 +02:00
|
|
|
)
|
|
|
|
.then((note) => {
|
|
|
|
os.pageWindow(`/notes/${note.id}`);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
if (err.code === "NO_SUCH_NOTE") {
|
|
|
|
os.alert({
|
|
|
|
type: "error",
|
|
|
|
text: i18n.ts.notFound,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
const lookup = (ev) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.popupMenu(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
text: i18n.ts.user,
|
|
|
|
icon: "ph-user ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
lookupUser();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.note,
|
|
|
|
icon: "ph-pencil ph-bold ph-lg",
|
|
|
|
action: () => {
|
2023-04-11 19:12:17 +02:00
|
|
|
lookupNote();
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.file,
|
|
|
|
icon: "ph-cloud ph-bold ph-lg",
|
|
|
|
action: () => {
|
2023-04-11 19:03:25 +02:00
|
|
|
lookupFile();
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
text: i18n.ts.instance,
|
|
|
|
icon: "ph-planet ph-bold ph-lg",
|
|
|
|
action: () => {
|
2023-04-11 19:03:25 +02:00
|
|
|
lookupInstance();
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2023-07-06 03:28:27 +02:00
|
|
|
ev.currentTarget ?? ev.target,
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2022-05-17 18:32:21 +02:00
|
|
|
};
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(INFO);
|
|
|
|
|
2022-05-17 18:32:21 +02:00
|
|
|
defineExpose({
|
|
|
|
header: {
|
|
|
|
title: i18n.ts.controlPanel,
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
</script>
|
2020-08-09 08:51:02 +02:00
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.hiyeyicy {
|
|
|
|
&.wide {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
> .nav {
|
|
|
|
width: 32%;
|
2021-10-10 08:19:16 +02:00
|
|
|
max-width: 280px;
|
2021-04-22 15:29:33 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
border-right: solid 0.5px var(--divider);
|
|
|
|
overflow: auto;
|
2021-10-10 08:19:16 +02:00
|
|
|
height: 100%;
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
2020-08-13 16:02:43 +02:00
|
|
|
|
2021-04-22 15:29:33 +02:00
|
|
|
> .main {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2021-10-10 08:19:16 +02:00
|
|
|
|
|
|
|
> .nav {
|
2021-10-24 13:16:55 +02:00
|
|
|
.lxpfedzu {
|
|
|
|
> .info {
|
|
|
|
margin: 16px 0;
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-10-24 13:16:55 +02:00
|
|
|
> .banner {
|
|
|
|
margin: 16px;
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2021-10-24 13:16:55 +02:00
|
|
|
> .icon {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
height: 42px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|