123456789101112131415161718192021222324252627 |
- @font-face {
- font-family: 'iconfont'; /* Project id */
- src: url('iconfont.ttf?t=1672732706745') format('truetype');
- }
- .iconfont {
- font-family: 'iconfont' !important;
- font-size: 16px;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .icon-edit:before {
- content: '\e7e1';
- }
- .icon-delete:before {
- content: '\e699';
- }
- .icon-next:before {
- content: '\e605';
- }
- .icon-prev:before {
- content: '\e606';
- }
|