2.8. 字体图标
本项目我们将使用 Font Awesome 来作为字体图标库。Font Awesome 提供了可缩放的矢量图标,允许我们使用 CSS 所提供的所有特性对它们进行更改,包括:大小、颜色、阴影或者其它任何支持的效果。
1. 安装
$ yarn add @fortawesome/fontawesome-free
输出:
打开 package.json
可以看到新增了这一行依赖:
package.json
{
.
.
.
"dependencies": {
"@fortawesome/fontawesome-free": "^5.6.3"
}
}
2. 载入
我们还需要在样式中载入:
resources/sass/app.scss
// Variables
@import 'variables';
// Bootstrap
@import '~bootst...