From 616b12823f92acfae2812bb4820d0d9b325a72f5 Mon Sep 17 00:00:00 2001 From: 闫增涛 <1829501689@qq.com> Date: 星期三, 15 五月 2024 17:25:36 +0800 Subject: [PATCH] 题目请求优化 --- src/App.vue | 54 +++++++++++++++++++++++++++++++++++++++++------------- 1 files changed, 41 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index 5f1ce5a..031b363 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,26 +6,54 @@ </template> <script> -import childHealth from './books/childHealth/view/index.vue' +import childHealth from "./books/childHealth/view/index.vue"; // import English from './books/English/view/index.vue' export default { - name: 'App', + name: "App", components: { - childHealth, + childHealth // English } -} +}; </script> <style lang="less"> - html,body{ - width: 100%; - height: 100%; - margin: 0; - } - #app { - width: 100%; - height: 100%; - } +html, +body { + width: 100%; + height: 100%; + margin: 0; +} +#app { + width: 100%; + height: 100%; +} +.highLight { + border: 1px dashed rgba(255, 255, 255, 0); + border-radius: 5px; + padding: 3px; + cursor: pointer; +} +.highLight:hover { + border: 1px dashed #949494 !important; +} + +.underline { + border: 1px dashed rgba(255, 255, 255, 0); + padding: 5px; + border-radius: 5px; + text-decoration: underline; + text-decoration-style: wavy; + text-underline-thickness: 2px; + cursor: pointer; +} +.underline:hover { + border: 1px dashed #949494 !important; +} + +.notesline { + padding-bottom: 2px; + border-bottom: 2px solid; +} </style> -- Gitblit v1.9.1