md/src/App.vue

72 lines
1.1 KiB
Vue
Raw Normal View History

<template>
<div id="app">
2023-07-29 17:00:48 +08:00
<codemirror-editor />
</div>
</template>
2023-07-29 17:00:48 +08:00
<script setup>
import CodemirrorEditor from '@/views/CodemirrorEditor.vue'
</script>
<style lang="less">
// 仿 uniapp 外层全屏
html,
body,
#app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: #ffffff;
}
::-webkit-scrollbar-track {
border-radius: 6px;
background-color: rgba(200, 200, 200, 0.3);
}
::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: rgba(144, 146, 152, 0.5);
}
/* CSS-hints */
.CodeMirror-hints {
position: absolute;
z-index: 10;
overflow-y: auto;
margin: 0;
padding: 2px;
border-radius: 4px;
max-height: 20em;
min-width: 200px;
font-size: 12px;
font-family: monospace;
color: #333333;
background-color: #ffffff;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}
.CodeMirror-hint {
margin-top: 10px;
padding: 4px 6px;
border-radius: 2px;
white-space: pre;
color: #000000;
cursor: pointer;
&:first-of-type {
margin-top: 0;
}
&:hover {
background: #f0f0f0;
}
2020-07-13 21:13:46 +08:00
}
2020-01-13 22:16:04 +08:00
</style>