12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <style lang="scss">
- * {
- margin: 0;
- padding: 0;
- }
- html,
- body {
- width: 100%;
- height: 100%;
- }
- #app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- width: 100%;
- height: 100%;
- }
- .el-scrollbar .el-scrollbar__wrap {
- overflow-x: hidden;
- }
- // 上面隐藏横向滚动条会导致下拉框底部遮盖问题
- .el-select-dropdown .el-scrollbar {
- padding-bottom: 17px;
- }
- </style>
|