add assets
This commit is contained in:
@@ -10,6 +10,15 @@
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-bounce {
|
||||
animation-name: #{$fa-css-prefix}-bounce;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1));
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-fade {
|
||||
animation-name: #{$fa-css-prefix}-fade;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
|
||||
@@ -37,6 +46,15 @@
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-shake {
|
||||
animation-name: #{$fa-css-prefix}-shake;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
|
||||
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
|
||||
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
|
||||
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
|
||||
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-spin {
|
||||
animation-name: #{$fa-css-prefix}-spin;
|
||||
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
|
||||
@@ -64,10 +82,12 @@
|
||||
// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.#{$fa-css-prefix}-beat,
|
||||
.#{$fa-css-prefix}-bounce,
|
||||
.#{$fa-css-prefix}-fade,
|
||||
.#{$fa-css-prefix}-beat-fade,
|
||||
.#{$fa-css-prefix}-flip,
|
||||
.#{$fa-css-prefix}-pulse,
|
||||
.#{$fa-css-prefix}-shake,
|
||||
.#{$fa-css-prefix}-spin,
|
||||
.#{$fa-css-prefix}-spin-pulse {
|
||||
animation-delay: -1ms;
|
||||
@@ -83,6 +103,16 @@
|
||||
45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-bounce {
|
||||
0% { transform: scale(1,1) translateY(0); }
|
||||
10% { transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0); }
|
||||
30% { transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1)) translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em)); }
|
||||
50% { transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0); }
|
||||
57% { transform: scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em)); }
|
||||
64% { transform: scale(1,1) translateY(0); }
|
||||
100% { transform: scale(1,1) translateY(0); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-fade {
|
||||
50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); }
|
||||
}
|
||||
@@ -104,6 +134,18 @@
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-shake {
|
||||
0% { transform: rotate(-15deg); }
|
||||
4% { transform: rotate(15deg); }
|
||||
8%, 24% { transform: rotate(-18deg); }
|
||||
12%, 28% { transform: rotate(18deg); }
|
||||
16% { transform: rotate(-22deg); }
|
||||
20% { transform: rotate(22deg); }
|
||||
32% { transform: rotate(-12deg); }
|
||||
36% { transform: rotate(12deg); }
|
||||
40%, 100% { transform: rotate(0deg); }
|
||||
}
|
||||
|
||||
@keyframes #{$fa-css-prefix}-spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
|
||||
@@ -40,3 +40,34 @@
|
||||
@include fa-sr-only();
|
||||
}
|
||||
}
|
||||
|
||||
// convenience mixins for declaring pseudo-elements by CSS variable,
|
||||
// including all style-specific font properties, and both the ::before
|
||||
// and ::after elements in the duotone case.
|
||||
@mixin fa-icon-solid($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-solid;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
||||
@mixin fa-icon-regular($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-regular;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
||||
@mixin fa-icon-brands($fa-var) {
|
||||
@extend %fa-icon;
|
||||
@extend .fa-brands;
|
||||
|
||||
&::before {
|
||||
content: unquote("\"#{ $fa-var }\"");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -355,9 +355,9 @@
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: fa-content($fa-var-gavel); }
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-gauge); }
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: fa-content($fa-var-gauge-high); }
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-gauge); }
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: fa-content($fa-var-gauge-high); }
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
|
||||
font-family: 'Font Awesome 6 Free';
|
||||
@@ -863,9 +863,9 @@
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-bank); }
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: fa-content($fa-var-building-columns); }
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-bank); }
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: fa-content($fa-var-building-columns); }
|
||||
|
||||
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: fa-content($fa-var-graduation-cap); }
|
||||
|
||||
|
||||
@@ -195,9 +195,6 @@ $fa-var-ban-smoking: \f54d;
|
||||
$fa-var-smoking-ban: \f54d;
|
||||
$fa-var-bandage: \f462;
|
||||
$fa-var-band-aid: \f462;
|
||||
$fa-var-bank: \f19c;
|
||||
$fa-var-institution: \f19c;
|
||||
$fa-var-university: \f19c;
|
||||
$fa-var-barcode: \f02a;
|
||||
$fa-var-bars: \f0c9;
|
||||
$fa-var-navicon: \f0c9;
|
||||
@@ -208,6 +205,7 @@ $fa-var-reorder: \f550;
|
||||
$fa-var-stream: \f550;
|
||||
$fa-var-baseball: \f433;
|
||||
$fa-var-baseball-ball: \f433;
|
||||
$fa-var-baseball-bat-ball: \f432;
|
||||
$fa-var-basket-shopping: \f291;
|
||||
$fa-var-shopping-basket: \f291;
|
||||
$fa-var-basketball: \f434;
|
||||
@@ -245,6 +243,7 @@ $fa-var-blog: \f781;
|
||||
$fa-var-bold: \f032;
|
||||
$fa-var-bolt: \f0e7;
|
||||
$fa-var-zap: \f0e7;
|
||||
$fa-var-bolt-lightning: \e0b7;
|
||||
$fa-var-bomb: \f1e2;
|
||||
$fa-var-bone: \f5d7;
|
||||
$fa-var-bong: \f55c;
|
||||
@@ -289,7 +288,13 @@ $fa-var-quidditch: \f458;
|
||||
$fa-var-quidditch-broom-ball: \f458;
|
||||
$fa-var-brush: \f55d;
|
||||
$fa-var-bug: \f188;
|
||||
$fa-var-bug-slash: \e490;
|
||||
$fa-var-building: \f1ad;
|
||||
$fa-var-building-columns: \f19c;
|
||||
$fa-var-bank: \f19c;
|
||||
$fa-var-institution: \f19c;
|
||||
$fa-var-museum: \f19c;
|
||||
$fa-var-university: \f19c;
|
||||
$fa-var-bullhorn: \f0a1;
|
||||
$fa-var-bullseye: \f140;
|
||||
$fa-var-burger: \f805;
|
||||
@@ -523,8 +528,11 @@ $fa-var-democrat: \f747;
|
||||
$fa-var-desktop: \f390;
|
||||
$fa-var-desktop-alt: \f390;
|
||||
$fa-var-dharmachakra: \f655;
|
||||
$fa-var-diagram-next: \e476;
|
||||
$fa-var-diagram-predecessor: \e477;
|
||||
$fa-var-diagram-project: \f542;
|
||||
$fa-var-project-diagram: \f542;
|
||||
$fa-var-diagram-successor: \e47a;
|
||||
$fa-var-diamond: \f219;
|
||||
$fa-var-diamond-turn-right: \f5eb;
|
||||
$fa-var-directions: \f5eb;
|
||||
@@ -767,12 +775,16 @@ $fa-var-soccer-ball: \f1e3;
|
||||
$fa-var-g: \47;
|
||||
$fa-var-gamepad: \f11b;
|
||||
$fa-var-gas-pump: \f52f;
|
||||
$fa-var-gauge: \f625;
|
||||
$fa-var-dashboard: \f625;
|
||||
$fa-var-gauge: \f624;
|
||||
$fa-var-dashboard: \f624;
|
||||
$fa-var-gauge-med: \f624;
|
||||
$fa-var-tachometer-alt-average: \f624;
|
||||
$fa-var-gauge-high: \f625;
|
||||
$fa-var-tachometer-alt: \f625;
|
||||
$fa-var-tachometer-alt-fast: \f625;
|
||||
$fa-var-gauge-simple: \f62a;
|
||||
$fa-var-gauge-simple: \f629;
|
||||
$fa-var-gauge-simple-med: \f629;
|
||||
$fa-var-tachometer-average: \f629;
|
||||
$fa-var-gauge-simple-high: \f62a;
|
||||
$fa-var-tachometer: \f62a;
|
||||
$fa-var-tachometer-fast: \f62a;
|
||||
@@ -911,6 +923,7 @@ $fa-var-house-damage: \f6f1;
|
||||
$fa-var-house-chimney-medical: \f7f2;
|
||||
$fa-var-clinic-medical: \f7f2;
|
||||
$fa-var-house-chimney-user: \e065;
|
||||
$fa-var-house-chimney-window: \e00d;
|
||||
$fa-var-house-crack: \e3b1;
|
||||
$fa-var-house-laptop: \e066;
|
||||
$fa-var-laptop-house: \e066;
|
||||
@@ -1065,6 +1078,9 @@ $fa-var-compress-arrows-alt: \f78c;
|
||||
$fa-var-minus: \f068;
|
||||
$fa-var-subtract: \f068;
|
||||
$fa-var-mitten: \f7b5;
|
||||
$fa-var-mobile: \f3ce;
|
||||
$fa-var-mobile-android: \f3ce;
|
||||
$fa-var-mobile-phone: \f3ce;
|
||||
$fa-var-mobile-button: \f10b;
|
||||
$fa-var-mobile-screen-button: \f3cd;
|
||||
$fa-var-mobile-alt: \f3cd;
|
||||
@@ -1106,8 +1122,9 @@ $fa-var-outdent: \f03b;
|
||||
$fa-var-dedent: \f03b;
|
||||
$fa-var-p: \50;
|
||||
$fa-var-pager: \f815;
|
||||
$fa-var-paint-brush: \f1fc;
|
||||
$fa-var-paint-roller: \f5aa;
|
||||
$fa-var-paintbrush: \f1fc;
|
||||
$fa-var-paint-brush: \f1fc;
|
||||
$fa-var-palette: \f53f;
|
||||
$fa-var-pallet: \f482;
|
||||
$fa-var-panorama: \e209;
|
||||
@@ -1461,6 +1478,8 @@ $fa-var-th-list: \f00b;
|
||||
$fa-var-table-tennis-paddle-ball: \f45d;
|
||||
$fa-var-ping-pong-paddle-ball: \f45d;
|
||||
$fa-var-table-tennis: \f45d;
|
||||
$fa-var-tablet: \f3fb;
|
||||
$fa-var-tablet-android: \f3fb;
|
||||
$fa-var-tablet-button: \f10a;
|
||||
$fa-var-tablet-screen-button: \f3fa;
|
||||
$fa-var-tablet-alt: \f3fa;
|
||||
@@ -1639,6 +1658,8 @@ $fa-var-video-camera: \f03d;
|
||||
$fa-var-video-slash: \f4e2;
|
||||
$fa-var-vihara: \f6a7;
|
||||
$fa-var-virus: \e074;
|
||||
$fa-var-virus-covid: \e4a8;
|
||||
$fa-var-virus-covid-slash: \e4a9;
|
||||
$fa-var-virus-slash: \e075;
|
||||
$fa-var-viruses: \e076;
|
||||
$fa-var-voicemail: \f897;
|
||||
@@ -1659,6 +1680,7 @@ $fa-var-wand-magic: \f0d0;
|
||||
$fa-var-magic: \f0d0;
|
||||
$fa-var-wand-magic-sparkles: \e2ca;
|
||||
$fa-var-magic-wand-sparkles: \e2ca;
|
||||
$fa-var-wand-sparkles: \f72b;
|
||||
$fa-var-warehouse: \f494;
|
||||
$fa-var-water: \f773;
|
||||
$fa-var-water-ladder: \f5c5;
|
||||
@@ -1707,7 +1729,6 @@ $fa-var-innosoft: \e080;
|
||||
$fa-var-500px: \f26e;
|
||||
$fa-var-accessible-icon: \f368;
|
||||
$fa-var-accusoft: \f369;
|
||||
$fa-var-acquisitions-incorporated: \f6af;
|
||||
$fa-var-adn: \f170;
|
||||
$fa-var-adversal: \f36a;
|
||||
$fa-var-affiliatetheme: \f36b;
|
||||
@@ -1904,6 +1925,7 @@ $fa-var-gulp: \f3ae;
|
||||
$fa-var-hacker-news: \f1d4;
|
||||
$fa-var-hacker-news-square: \f3af;
|
||||
$fa-var-hackerrank: \f5f7;
|
||||
$fa-var-hashnode: \e499;
|
||||
$fa-var-hips: \f452;
|
||||
$fa-var-hire-a-helper: \f3b0;
|
||||
$fa-var-hive: \e07f;
|
||||
@@ -1991,12 +2013,12 @@ $fa-var-opera: \f26a;
|
||||
$fa-var-optin-monster: \f23c;
|
||||
$fa-var-orcid: \f8d2;
|
||||
$fa-var-osi: \f41a;
|
||||
$fa-var-padlet: \e4a0;
|
||||
$fa-var-page4: \f3d7;
|
||||
$fa-var-pagelines: \f18c;
|
||||
$fa-var-palfed: \f3d8;
|
||||
$fa-var-patreon: \f3d9;
|
||||
$fa-var-paypal: \f1ed;
|
||||
$fa-var-penny-arcade: \f704;
|
||||
$fa-var-perbyte: \e083;
|
||||
$fa-var-periscope: \f3da;
|
||||
$fa-var-phabricator: \f3db;
|
||||
@@ -2314,9 +2336,6 @@ $fa-icons: (
|
||||
"smoking-ban": $fa-var-smoking-ban,
|
||||
"bandage": $fa-var-bandage,
|
||||
"band-aid": $fa-var-band-aid,
|
||||
"bank": $fa-var-bank,
|
||||
"institution": $fa-var-institution,
|
||||
"university": $fa-var-university,
|
||||
"barcode": $fa-var-barcode,
|
||||
"bars": $fa-var-bars,
|
||||
"navicon": $fa-var-navicon,
|
||||
@@ -2327,6 +2346,7 @@ $fa-icons: (
|
||||
"stream": $fa-var-stream,
|
||||
"baseball": $fa-var-baseball,
|
||||
"baseball-ball": $fa-var-baseball-ball,
|
||||
"baseball-bat-ball": $fa-var-baseball-bat-ball,
|
||||
"basket-shopping": $fa-var-basket-shopping,
|
||||
"shopping-basket": $fa-var-shopping-basket,
|
||||
"basketball": $fa-var-basketball,
|
||||
@@ -2364,6 +2384,7 @@ $fa-icons: (
|
||||
"bold": $fa-var-bold,
|
||||
"bolt": $fa-var-bolt,
|
||||
"zap": $fa-var-zap,
|
||||
"bolt-lightning": $fa-var-bolt-lightning,
|
||||
"bomb": $fa-var-bomb,
|
||||
"bone": $fa-var-bone,
|
||||
"bong": $fa-var-bong,
|
||||
@@ -2408,7 +2429,13 @@ $fa-icons: (
|
||||
"quidditch-broom-ball": $fa-var-quidditch-broom-ball,
|
||||
"brush": $fa-var-brush,
|
||||
"bug": $fa-var-bug,
|
||||
"bug-slash": $fa-var-bug-slash,
|
||||
"building": $fa-var-building,
|
||||
"building-columns": $fa-var-building-columns,
|
||||
"bank": $fa-var-bank,
|
||||
"institution": $fa-var-institution,
|
||||
"museum": $fa-var-museum,
|
||||
"university": $fa-var-university,
|
||||
"bullhorn": $fa-var-bullhorn,
|
||||
"bullseye": $fa-var-bullseye,
|
||||
"burger": $fa-var-burger,
|
||||
@@ -2642,8 +2669,11 @@ $fa-icons: (
|
||||
"desktop": $fa-var-desktop,
|
||||
"desktop-alt": $fa-var-desktop-alt,
|
||||
"dharmachakra": $fa-var-dharmachakra,
|
||||
"diagram-next": $fa-var-diagram-next,
|
||||
"diagram-predecessor": $fa-var-diagram-predecessor,
|
||||
"diagram-project": $fa-var-diagram-project,
|
||||
"project-diagram": $fa-var-project-diagram,
|
||||
"diagram-successor": $fa-var-diagram-successor,
|
||||
"diamond": $fa-var-diamond,
|
||||
"diamond-turn-right": $fa-var-diamond-turn-right,
|
||||
"directions": $fa-var-directions,
|
||||
@@ -2888,10 +2918,14 @@ $fa-icons: (
|
||||
"gas-pump": $fa-var-gas-pump,
|
||||
"gauge": $fa-var-gauge,
|
||||
"dashboard": $fa-var-dashboard,
|
||||
"gauge-med": $fa-var-gauge-med,
|
||||
"tachometer-alt-average": $fa-var-tachometer-alt-average,
|
||||
"gauge-high": $fa-var-gauge-high,
|
||||
"tachometer-alt": $fa-var-tachometer-alt,
|
||||
"tachometer-alt-fast": $fa-var-tachometer-alt-fast,
|
||||
"gauge-simple": $fa-var-gauge-simple,
|
||||
"gauge-simple-med": $fa-var-gauge-simple-med,
|
||||
"tachometer-average": $fa-var-tachometer-average,
|
||||
"gauge-simple-high": $fa-var-gauge-simple-high,
|
||||
"tachometer": $fa-var-tachometer,
|
||||
"tachometer-fast": $fa-var-tachometer-fast,
|
||||
@@ -3030,6 +3064,7 @@ $fa-icons: (
|
||||
"house-chimney-medical": $fa-var-house-chimney-medical,
|
||||
"clinic-medical": $fa-var-clinic-medical,
|
||||
"house-chimney-user": $fa-var-house-chimney-user,
|
||||
"house-chimney-window": $fa-var-house-chimney-window,
|
||||
"house-crack": $fa-var-house-crack,
|
||||
"house-laptop": $fa-var-house-laptop,
|
||||
"laptop-house": $fa-var-laptop-house,
|
||||
@@ -3184,6 +3219,9 @@ $fa-icons: (
|
||||
"minus": $fa-var-minus,
|
||||
"subtract": $fa-var-subtract,
|
||||
"mitten": $fa-var-mitten,
|
||||
"mobile": $fa-var-mobile,
|
||||
"mobile-android": $fa-var-mobile-android,
|
||||
"mobile-phone": $fa-var-mobile-phone,
|
||||
"mobile-button": $fa-var-mobile-button,
|
||||
"mobile-screen-button": $fa-var-mobile-screen-button,
|
||||
"mobile-alt": $fa-var-mobile-alt,
|
||||
@@ -3225,8 +3263,9 @@ $fa-icons: (
|
||||
"dedent": $fa-var-dedent,
|
||||
"p": $fa-var-p,
|
||||
"pager": $fa-var-pager,
|
||||
"paint-brush": $fa-var-paint-brush,
|
||||
"paint-roller": $fa-var-paint-roller,
|
||||
"paintbrush": $fa-var-paintbrush,
|
||||
"paint-brush": $fa-var-paint-brush,
|
||||
"palette": $fa-var-palette,
|
||||
"pallet": $fa-var-pallet,
|
||||
"panorama": $fa-var-panorama,
|
||||
@@ -3580,6 +3619,8 @@ $fa-icons: (
|
||||
"table-tennis-paddle-ball": $fa-var-table-tennis-paddle-ball,
|
||||
"ping-pong-paddle-ball": $fa-var-ping-pong-paddle-ball,
|
||||
"table-tennis": $fa-var-table-tennis,
|
||||
"tablet": $fa-var-tablet,
|
||||
"tablet-android": $fa-var-tablet-android,
|
||||
"tablet-button": $fa-var-tablet-button,
|
||||
"tablet-screen-button": $fa-var-tablet-screen-button,
|
||||
"tablet-alt": $fa-var-tablet-alt,
|
||||
@@ -3758,6 +3799,8 @@ $fa-icons: (
|
||||
"video-slash": $fa-var-video-slash,
|
||||
"vihara": $fa-var-vihara,
|
||||
"virus": $fa-var-virus,
|
||||
"virus-covid": $fa-var-virus-covid,
|
||||
"virus-covid-slash": $fa-var-virus-covid-slash,
|
||||
"virus-slash": $fa-var-virus-slash,
|
||||
"viruses": $fa-var-viruses,
|
||||
"voicemail": $fa-var-voicemail,
|
||||
@@ -3778,6 +3821,7 @@ $fa-icons: (
|
||||
"magic": $fa-var-magic,
|
||||
"wand-magic-sparkles": $fa-var-wand-magic-sparkles,
|
||||
"magic-wand-sparkles": $fa-var-magic-wand-sparkles,
|
||||
"wand-sparkles": $fa-var-wand-sparkles,
|
||||
"warehouse": $fa-var-warehouse,
|
||||
"water": $fa-var-water,
|
||||
"water-ladder": $fa-var-water-ladder,
|
||||
@@ -3828,7 +3872,6 @@ $fa-brand-icons: (
|
||||
"500px": $fa-var-500px,
|
||||
"accessible-icon": $fa-var-accessible-icon,
|
||||
"accusoft": $fa-var-accusoft,
|
||||
"acquisitions-incorporated": $fa-var-acquisitions-incorporated,
|
||||
"adn": $fa-var-adn,
|
||||
"adversal": $fa-var-adversal,
|
||||
"affiliatetheme": $fa-var-affiliatetheme,
|
||||
@@ -4025,6 +4068,7 @@ $fa-brand-icons: (
|
||||
"hacker-news": $fa-var-hacker-news,
|
||||
"hacker-news-square": $fa-var-hacker-news-square,
|
||||
"hackerrank": $fa-var-hackerrank,
|
||||
"hashnode": $fa-var-hashnode,
|
||||
"hips": $fa-var-hips,
|
||||
"hire-a-helper": $fa-var-hire-a-helper,
|
||||
"hive": $fa-var-hive,
|
||||
@@ -4112,12 +4156,12 @@ $fa-brand-icons: (
|
||||
"optin-monster": $fa-var-optin-monster,
|
||||
"orcid": $fa-var-orcid,
|
||||
"osi": $fa-var-osi,
|
||||
"padlet": $fa-var-padlet,
|
||||
"page4": $fa-var-page4,
|
||||
"pagelines": $fa-var-pagelines,
|
||||
"palfed": $fa-var-palfed,
|
||||
"patreon": $fa-var-patreon,
|
||||
"paypal": $fa-var-paypal,
|
||||
"penny-arcade": $fa-var-penny-arcade,
|
||||
"perbyte": $fa-var-perbyte,
|
||||
"periscope": $fa-var-periscope,
|
||||
"phabricator": $fa-var-phabricator,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.0.0-beta3 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2021 Fonticons, Inc.
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
4
assets/fontawesomefree/scss/fontawesome.scss
vendored
4
assets/fontawesomefree/scss/fontawesome.scss
vendored
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.0.0-beta3 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2021 Fonticons, Inc.
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
// Font Awesome core compile (Web Fonts-based)
|
||||
// -------------------------
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.0.0-beta3 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2021 Fonticons, Inc.
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.0.0-beta3 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2021 Fonticons, Inc.
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
@import 'functions';
|
||||
@import 'variables';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/*!
|
||||
* Font Awesome Free 6.0.0-beta3 by @fontawesome - https://fontawesome.com
|
||||
* Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
|
||||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
||||
* Copyright 2021 Fonticons, Inc.
|
||||
* Copyright 2022 Fonticons, Inc.
|
||||
*/
|
||||
// V4 shims compile (Web Fonts-based)
|
||||
// -------------------------
|
||||
|
||||
Reference in New Issue
Block a user