12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <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;
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-weight: 400;
- color: #2c3e50;
- width: 100vw;
- 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>
|