我无法使用 html 和 css 在 Sencha Architect 中设置我的图标大小

I Can't style the size of my icons in Sencha Architect with html and css

我想知道为什么我似乎无法增加图标的大小。

这是我的配置 html:

<i class="fa fa-hand-o-up"></i>

在我的样式表中,我这样做:

.fa-hand-o-up{
   color: white;
   font-size: 50px;
}

颜色可以,但 font-size 不行,谁能帮帮我?

试试这个

<i class="fa fa-hand-o-up" style="font-size:50px;color:white;"></i>

尝试将 CSS 的 font-size: 50px 行添加为 font-size: 50px !important

要增加 Font Awesome 图标大小,您可以使用 "fa-2x"、"fa-3x"、... 类:

<i class="fa fa-hand-o-up fa-2x"></i>

Font Awesome

试试这个:

.fa.fa-hand-o-up {
  font-size: 50px !important;
}