123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <router-view />
- </template>
- <script>
- export default {};
- </script>
- <style>
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- /* text-align: center; */
- /* color: #2c3e50; */
- /* margin-top: 60px; */
- }
- html,
- body {
- height: 100vh;
- margin: 0;
- padding: 0;
- }
- /*定义滚动条轨道 内阴影+圆角*/
- ::-webkit-scrollbar {
- width: 3px;
- height: 3px;
- background: transparent;
- }
- ::-webkit-scrollbar-corner {
- background-color: transparent;
- }
- /*滚动条里面小方块*/
- ::-webkit-scrollbar-thumb {
- background-color: var(--color-scrollbar) !important;
- border-radius: 4px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: var(--color-scrollbar-hover);
- }
- ::-webkit-scrollbar-track {
- background-color: transparent !important;
- }
- </style>
|