123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- @import './variables.scss';
- @import './mixin.scss';
- @import './element-ui.scss';
- body {
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- overflow: hidden;
- /* stylelint-disable-next-line */
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, '微软雅黑',
- Arial, sans-serif;
- }
- label {
- font-weight: 700;
- }
- html {
- box-sizing: border-box;
- }
- html,
- body {
- font-size: 16px !important;
- height: 100%;
- }
- ul {
- padding-inline-start: 0;
- margin: 0;
- li {
- list-style: none;
- }
- }
- #app {
- height: 100%;
- }
- *,
- *::before,
- *::after {
- box-sizing: inherit;
- }
- a:focus,
- a:active {
- outline: none;
- }
- /* stylelint-disable-next-line no-descending-specificity */
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .t-right {
- text-align: right;
- }
- .tip {
- color: #aaa;
- }
|