32 lines
682 B
CSS
32 lines
682 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id 4645974 */
|
|
src: url('~@/static/icon-font/css/iconfont.woff2?t=1722997421621') format('woff2'),
|
|
url('~@/static/icon-font/css/iconfont.woff?t=1722997421621') format('woff'),
|
|
url('~@/static/icon-font/css/iconfont.ttf?t=1722997421621') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-down-arrow:before {
|
|
content: "\e839";
|
|
}
|
|
|
|
.icon-success:before {
|
|
content: "\e6d0";
|
|
}
|
|
|
|
.icon-right:before {
|
|
content: "\e649";
|
|
}
|
|
|
|
.icon-up-arrow:before {
|
|
content: "\e844";
|
|
}
|
|
|