18 lines
342 B
CSS
18 lines
342 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id */
|
|
src: url('./iconfont-ttf/icon-weixiu.ttf') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-weixiu:before {
|
|
content: "\e640";
|
|
}
|
|
|