blob: 33466d4cec45cb00a26b46471789be77f6ed1694 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<script lang="ts">
export default {
props: {
title: {
type: String,
default: "1",
},
message: {
type: String,
require: true
},
date: {
type: Date,
default: new Date('2024-07-14T12:00:00Z')
}
},
}
</script>
<template>
<div class="details" style="overflow-y:hidden;overflow-x:hidden;height:100%">
<h3>
{{ title }}
</h3>
<v-md-preview :text="message" ></v-md-preview>
</div>
</template>
<style scoped>
h3 {
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 0.4rem;
color: var(--color-heading);
}
.details {
flex: 1;
width: 60dvw;
float: right;
}
@media screen and (orientation:landscape) {
.details {
flex: 1;
width: 32dvw;
}
}
</style>
|