aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/site/src/views/index/Notepad/index.vue
diff options
context:
space:
mode:
Diffstat (limited to 'site/src/views/index/Notepad/index.vue')
-rw-r--r--site/src/views/index/Notepad/index.vue53
1 files changed, 0 insertions, 53 deletions
diff --git a/site/src/views/index/Notepad/index.vue b/site/src/views/index/Notepad/index.vue
deleted file mode 100644
index fde6e90..0000000
--- a/site/src/views/index/Notepad/index.vue
+++ /dev/null
@@ -1,53 +0,0 @@
-<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:scroll;overflow-x:hidden;height:100%">
- <h3>
- {{ title }}
- </h3>
- <v-md-preview :text="message" ></v-md-preview>
- </div>
-</template>
-
-
-<style scoped>
-
-
-h3 {
- font-size: 1.2rem;
- 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: 30dvw;
- }
-}
-</style>