华西海圻ELN前端工程
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
611 B

  1. <template>
  2. <div id="app">
  3. <router-view />
  4. <theme-picker />
  5. </div>
  6. </template>
  7. <script>
  8. import ThemePicker from "@/components/ThemePicker"
  9. export default {
  10. name: "App",
  11. components: { ThemePicker }
  12. }
  13. </script>
  14. <style rel="stylesheet/scss" lang="scss">
  15. #app .theme-picker {
  16. display: none;
  17. }
  18. /*搜索区域样式 */
  19. .search-area {
  20. input{
  21. width: 150px;
  22. }
  23. }
  24. /*详情 */
  25. .detail-container{
  26. .header{
  27. height: 40px;
  28. line-height: 40px;
  29. display: flex;
  30. justify-items:flex-end;
  31. box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 0 3px 0 rgba(0, 0, 0, 0.04);
  32. }
  33. }
  34. </style>