Created
September 10, 2020 08:36
-
-
Save gooqiao/c765b5d1356f760bb9edf8d5db3951fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a, | |
a:focus, | |
a:hover { | |
color: inherit; | |
outline: none; | |
text-decoration: none; | |
} | |
body { | |
height: 100%; | |
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", | |
"Microsoft YaHei", "微软雅黑", Arial, sans-serif; | |
font-size: map-get($font-size-map, "base"); | |
} | |
html, | |
#app { | |
height: 100%; | |
} | |
.link { | |
text-decoration: underline; | |
} | |
.el-submenu__title i { | |
color: inherit; | |
} | |
.full-width { | |
width: 100%; | |
} | |
.full-height { | |
height: 100; | |
} | |
.error-page { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
padding-top: 80px; | |
.title { | |
font-size: 80px; | |
color: map-get($font-color-map, "primary"); | |
} | |
.value { | |
font-size: 24px; | |
color: #606266; | |
} | |
} | |
.auto-container { | |
margin: 0 auto; | |
min-width: $view-min-width; | |
max-width: $view-max-width; | |
padding-left: $view-fix-horizontal-padding; | |
padding-right: $view-fix-horizontal-padding; | |
} | |
.center { | |
margin: 0 auto; | |
} | |
.th-c { | |
color: $color-primary; | |
} | |
.danger-color { | |
color: $color-danger; | |
} | |
.normal { | |
& input::-webkit-outer-spin-button, | |
input::-webkit-inner-spin-button { | |
-webkit-appearance: none !important; | |
} | |
input[type="number"] { | |
-moz-appearance: textfield; | |
} | |
} | |
.no-text-dec { | |
text-decoration: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment