aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/views/index/Notepad/index.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/index/Notepad/index.vue')
-rw-r--r--src/views/index/Notepad/index.vue21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/views/index/Notepad/index.vue b/src/views/index/Notepad/index.vue
index 2d4f037..4dcde33 100644
--- a/src/views/index/Notepad/index.vue
+++ b/src/views/index/Notepad/index.vue
@@ -14,35 +14,42 @@ export default {
<template>
- <div class="details" style="overflow-y:hidden;overflow-x:hidden;height:100%">
+ <div class="details" style="height:100%">
<h3>
{{ content.title }}
</h3>
- <v-md-preview :text="content.message" ></v-md-preview>
+ <div class="content">
+ <v-md-preview :text="content.message"></v-md-preview>
+ </div>
</div>
</template>
<style scoped>
+.details {
+ flex: 1;
+ float: right;
+ height: 100%;
+ padding: 0 10dvw;
+}
h3 {
- font-size: 1.8rem;
+ font-size: 1.5rem;
font-weight: 500;
margin-bottom: 0.4rem;
color: var(--color-heading);
}
-.details {
- flex: 1;
- width: 60dvw;
- float: right;
+.content {
+ overflow-x: auto;
}
@media screen and (orientation:landscape) {
.details {
flex: 1;
width: 32dvw;
+ padding: 0;
}
}
</style>