28 lines
445 B
CSS
28 lines
445 B
CSS
@font-face {
|
|
font-family: "iconfont";
|
|
src: url('../fonts/iconfont.ttf') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 36rpx;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-back::before {
|
|
content: "\e601";
|
|
}
|
|
|
|
.icon-more::before {
|
|
content: "\e602";
|
|
}
|
|
|
|
.icon-emoji::before {
|
|
content: "\e603";
|
|
}
|
|
|
|
.icon-add::before {
|
|
content: "\e604";
|
|
} |