Adding Icon Styling with Vue
Font Awesome has a ton of great styling tools that work hand-in-hand with our icons to make your project look its best.
The entire Font Awesome styling toolkit is available when using Vue, but the syntax is different from our general web-use documentation. Below you’ll find the syntax for adding styling with Vue, with a link to the general documentation that has descriptions and examples for each styling tool.
Size
Font Awesome supports t-shirt size scale from xs
, sm
, lg
, and 1x
to 10x
.
Remember, you can always control icon size directly with the CSS font-size
attribute. The font-awesome-icon
’s size prop determines icon size relative to the current context’s font-size.
Fixed-Width
Setting icons to use a fixed-width helps when you’re trying to align icons in a vertical column.
Icons in a List
There’s no Vue-specific syntax for using icons in a list, so you can use fa-ul
and fa-li
to replace default bullets in unordered lists just like usual.
Rotate and Flip Icons
Rotate on quarter turns and flip horizontally, vertically, or both. Or try power transforms for more granularity.
Animate Icons
You can use the animate utilities as a way to indicate loading or processing, especially when paired with icons like spinner
or sync
. The spin utility smoothly spins the icon clockwise, and the pulse utility spins clockwise in eight steps.
Bordered Icons
Add a border around an icon with this utility.
Pulled Icons
Wrap text around an icon with this utility.
Power Transforms
Power Transforms are just that - powerful! You can scale, position, rotate, and flip all with this one styling tool.
- To scale icons up or down, use
grow-#
andshrink-#
with any arbitrary value, including decimals. - To move icons up, down, left, or right, use
up-#
,down-#
,left-#
, andright-#
with any arbitrary value, including decimals. - To rotate or flip icons use any combination of
flip-v
,flip-h
, orrotate-#
with any arbitrary value.
Mask
Grab the Mask utility when you want to layer two icons but have the inner icon cut out from the icon below so the parent element’s background shows through.
Duotone Icons
For Duotone icons, you can swap the opacity on the layers:
We’ve also built a lot of utility into CSS custom properties for Duotone icons.
Layer
If you’d like to layer icons, add a text layer over an icon, or add a counter to an icon, you’ll need to add the layering components. Edit your main.js
to look like this:
Then you can use the utilities in those components to layer icons, text, or add counters. You can also invert an icon to get a cut-out effect.
Layer Icons
Layer one or more icons to create a new icon. Include fixed-width
to have the layers align.
Layer Text
Add text on top of an icon. Use power transforms to control how the text appears.
Add Counters
Add a counter to the corner of an icon. Postion can be bottom-left
, bottom-right
, top-left
and the default top-right
.
Invert the Icon Color to White
This can be useful when layering icons, or on its own.