Files
WYGIWYH/frontend/src/styles/_font-awesome.scss
T
2025-11-01 03:15:44 -03:00

22 lines
688 B
SCSS

@use "@fortawesome/fontawesome-free/css/fontawesome.css"; // Core FontAwesome styles
@use "@fortawesome/fontawesome-free/css/solid.css"; // Solid icons (fas)
@use "@fortawesome/fontawesome-free/css/regular.css"; // Regular icons (far)
// Override FontAwesome's .fab class to avoid conflict with DaisyUI
// This removes the FontAwesome Brand icons styling from .fab, allowing DaisyUI to style it
.fab {
font-family: unset;
font-weight: unset;
-moz-osx-font-smoothing: unset;
-webkit-font-smoothing: unset;
display: revert-layer;
font-style: unset;
font-variant: unset;
line-height: unset;
text-rendering: unset;
}
.fab::before {
content: unset;
}