toggle-components-library 1.36.4-beta.7 → 1.36.4-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/img/airship-flight-assist.539bc3e3.svg +13 -0
- package/dist/toggle-components-library.common.js +72 -72
- package/dist/toggle-components-library.css +1 -1
- package/dist/toggle-components-library.umd.js +72 -72
- package/package.json +1 -1
- package/src/assets/icons/airship-flight-assist.svg +13 -0
- package/src/sass/includes/_as_badges.scss +1 -1
- package/src/sass/includes/_as_inputs.scss +1 -1
- package/src/sass/includes/_as_metrics.scss +2 -2
- package/src/sass/includes/_as_navs.scss +12 -0
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
|
|
4
|
+
<stop offset="0" stop-color="#bd38df"/>
|
|
5
|
+
<stop offset="1" stop-color="#5f1c70"/>
|
|
6
|
+
</linearGradient>
|
|
7
|
+
</defs>
|
|
8
|
+
<g id="Group_22" data-name="Group 22" transform="translate(9.062 -181.365) rotate(11)">
|
|
9
|
+
<path id="Path_14" data-name="Path 14" d="M6.264,2.145a.982.982,0,0,1,1.838,0l.79,3.538c.1.236.192.5.525.525l2.8.056a1,1,0,0,1,0,1.838L9.706,9.181a1,1,0,0,0-.525.525L8.1,15.222a1,1,0,0,1-1.838,0L5.186,9.706a1,1,0,0,0-.525-.525L2.145,8.1a1,1,0,0,1,0-1.838l2.782.1c.347.007.424-.289.525-.525Z" transform="matrix(-0.848, -0.53, 0.53, -0.848, 42.092, 197.282)" fill="url(#linear-gradient)"/>
|
|
10
|
+
<path id="Polygon_2" data-name="Polygon 2" d="M3.07,2.145a1,1,0,0,1,1.838,0l.12.28a1,1,0,0,0,.525.525l.28.12a1,1,0,0,1,0,1.838l-.28.12a1,1,0,0,0-.525.525l-.12.28a1,1,0,0,1-1.838,0l-.12-.28a1,1,0,0,0-.525-.525l-.28-.12a1,1,0,0,1,0-1.838l.28-.12a1,1,0,0,0,.525-.525Z" transform="matrix(0.996, -0.087, 0.087, 0.996, 27.627, 185.251)" fill="url(#linear-gradient)"/>
|
|
11
|
+
<path id="Polygon_3" data-name="Polygon 3" d="M4.712,4.147a.684.684,0,0,1,1.35,0h0a.684.684,0,0,0,.565.565h0a.684.684,0,0,1,0,1.35h0a.684.684,0,0,0-.565.565h0a.684.684,0,0,1-1.35,0h0a.684.684,0,0,0-.565-.565h0a.684.684,0,0,1,0-1.35h0a.684.684,0,0,0,.565-.565Z" transform="matrix(0.996, -0.087, 0.087, 0.996, 35.981, 190.046)" fill="url(#linear-gradient)"/>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
&.metric-label-atmosphere {
|
|
21
21
|
color: #354B64;
|
|
22
22
|
font-weight: 400;
|
|
23
|
-
font-size:
|
|
23
|
+
font-size: 14px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
&.metric-value-atmosphere {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
&.metric-value-small {
|
|
32
|
-
font-size:
|
|
32
|
+
font-size: 30px;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
|
|
@@ -521,7 +521,19 @@
|
|
|
521
521
|
animation: tilt-shake 0.4s;
|
|
522
522
|
background-image: url("../assets/icons/airship-feedback-hover.svg");
|
|
523
523
|
}
|
|
524
|
+
&.airship-flight-assist-icon a::before,
|
|
525
|
+
&.airship-flight-assist-icon span::before {
|
|
526
|
+
background-image: url("../assets/icons/airship-flight-assist.svg");
|
|
527
|
+
width: 1.2rem;
|
|
528
|
+
height: 1.2rem;
|
|
529
|
+
padding-left: 0.3rem;
|
|
530
|
+
}
|
|
524
531
|
|
|
532
|
+
&.airship-flight-assist-icon a:hover::before,
|
|
533
|
+
&.airship-flight-assist-icon span:hover::before {
|
|
534
|
+
animation: tilt-shake 0.4s;
|
|
535
|
+
background-image: url("../assets/icons/airship-flight-assist.svg");
|
|
536
|
+
}
|
|
525
537
|
}
|
|
526
538
|
}
|
|
527
539
|
|