1
YM
2024-05-15 00c39bac238dcd23346f2f47462f3ac6e81f64a3
src/App.vue
@@ -6,20 +6,21 @@
</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{
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
@@ -28,4 +29,31 @@
    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>