123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <template>
- <router-view />
- </template>
- <script>
- export default {
- name: 'App',
- components: {},
- };
- </script>
- <style>
- * {
- margin: 0;
- padding: 0;
- vertical-align: middle;
- box-sizing: border-box;
- user-select: none;
- }
- html,body{
- width: 100%;
- height: 100%;
- /* min-width: 1805px; */
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-weight: 400;
- color: #2c3e50;
- width: 100%;
- height: 100vh;
- overflow: hidden;
- }
- *::-webkit-scrollbar {
- /*滚动条整体样式*/
- width: 5px;
- /*高宽分别对应横竖滚动条的尺寸*/
- height: 1px;
- }
- *::-webkit-scrollbar-thumb {
- /*滚动条里面小方块*/
- border-radius: 10px;
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- background: #babcc0;
- }
- *::-webkit-scrollbar-track {
- /*滚动条里面轨道*/
- box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
- border-radius: 10px;
- background: #ededed;
- }
- </style>
|