2024-03-01 14:17:02 +01:00
|
|
|
<template>
|
|
|
|
<XWindow
|
|
|
|
:initial-width="800"
|
|
|
|
:can-resize="true"
|
|
|
|
:front="true"
|
|
|
|
class="thppypvi"
|
2024-03-02 06:24:05 +01:00
|
|
|
@closed="emit('closed')"
|
2024-03-01 14:17:02 +01:00
|
|
|
>
|
|
|
|
<template #header>
|
|
|
|
{{ title }}
|
|
|
|
</template>
|
|
|
|
<div class="zrgnubda">
|
|
|
|
{{ description }}
|
|
|
|
</div>
|
|
|
|
</XWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import XWindow from "@/components/MkWindow.vue";
|
|
|
|
|
|
|
|
defineProps<{
|
|
|
|
title: string;
|
|
|
|
description: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: "closed"): void;
|
|
|
|
}>();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.thppypvi {
|
|
|
|
max-height: 70%;
|
|
|
|
overflow-y: scroll;
|
2024-03-06 00:10:28 +01:00
|
|
|
-ms-overflow-style: none;
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thppypvi::-webkit-scrollbar {
|
|
|
|
display: none;
|
2024-03-01 14:17:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.zrgnubda {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
font-size: 1.2em;
|
|
|
|
padding: 5px 20px 10px;
|
|
|
|
margin: 5px;
|
|
|
|
}
|
|
|
|
</style>
|