ui-kit-ck-consultant 0.5.180 → 0.5.183
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/css/style.css +18 -0
- package/dist/index.css +8 -7
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/css/style.css
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
/* start color */
|
2
2
|
|
3
|
+
.primary {
|
4
|
+
color: var(--primary-color) !important;
|
5
|
+
}
|
6
|
+
.secondary {
|
7
|
+
color: var(--secondary-color) !important;
|
8
|
+
}
|
9
|
+
.thirty {
|
10
|
+
color: var(--thirty-color) !important;
|
11
|
+
}
|
3
12
|
.green {
|
4
13
|
color: var(--green) !important;
|
5
14
|
}
|
@@ -88,6 +97,15 @@
|
|
88
97
|
color: var(--black) !important;
|
89
98
|
}
|
90
99
|
|
100
|
+
.bg-primary {
|
101
|
+
background-color: var(--primary-color) !important;
|
102
|
+
}
|
103
|
+
.bg-secondary {
|
104
|
+
background-color: var(--secondary-color) !important;
|
105
|
+
}
|
106
|
+
.bg-thirty {
|
107
|
+
background-color: var(--thirty-color) !important;
|
108
|
+
}
|
91
109
|
.bg-green {
|
92
110
|
background-color: var(--green) !important;
|
93
111
|
}
|
package/dist/index.css
CHANGED
@@ -2523,7 +2523,7 @@
|
|
2523
2523
|
text-align: center;
|
2524
2524
|
}
|
2525
2525
|
|
2526
|
-
._361mk{
|
2526
|
+
._361mk {
|
2527
2527
|
position: fixed;
|
2528
2528
|
bottom: 2rem;
|
2529
2529
|
left: 2rem;
|
@@ -2531,7 +2531,7 @@
|
|
2531
2531
|
z-index: 100;
|
2532
2532
|
}
|
2533
2533
|
|
2534
|
-
._22nl5{
|
2534
|
+
._22nl5 {
|
2535
2535
|
display: flex;
|
2536
2536
|
padding: 1rem;
|
2537
2537
|
background-color: #ffffff;
|
@@ -2540,27 +2540,28 @@
|
|
2540
2540
|
z-index: 120;
|
2541
2541
|
}
|
2542
2542
|
|
2543
|
-
._22nl5 > span{
|
2543
|
+
._22nl5 > span {
|
2544
2544
|
display: inline-block;
|
2545
2545
|
margin: auto 1rem;
|
2546
2546
|
}
|
2547
2547
|
|
2548
|
-
._2fV2F{
|
2548
|
+
._2fV2F {
|
2549
2549
|
display: flex;
|
2550
2550
|
width: 100%;
|
2551
|
-
height: 60px;
|
2551
|
+
min-height: 60px;
|
2552
2552
|
padding: 0 1rem;
|
2553
2553
|
border-radius: 12px;
|
2554
2554
|
}
|
2555
2555
|
|
2556
|
-
._2fV2F>span{
|
2556
|
+
._2fV2F > span {
|
2557
2557
|
margin: auto 0;
|
2558
2558
|
}
|
2559
2559
|
|
2560
|
-
._1UPB2{
|
2560
|
+
._1UPB2 {
|
2561
2561
|
margin-left: auto !important;
|
2562
2562
|
font-size: 1.3rem;
|
2563
2563
|
}
|
2564
|
+
|
2564
2565
|
._2wEDs {
|
2565
2566
|
display: flex;
|
2566
2567
|
flex-direction: column;
|
package/dist/index.js
CHANGED
@@ -3481,9 +3481,10 @@ var ListingHorizontalItem = /*#__PURE__*/function (_React$Component) {
|
|
3481
3481
|
className: listingClass
|
3482
3482
|
}, /*#__PURE__*/React__default.createElement("div", {
|
3483
3483
|
className: style$s.listing_horizontal_icon,
|
3484
|
-
style:
|
3485
|
-
backgroundColor: this.props.
|
3486
|
-
|
3484
|
+
style: {
|
3485
|
+
backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
|
3486
|
+
color: this.props.color ? this.props.color : 'white'
|
3487
|
+
}
|
3487
3488
|
}, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
|
3488
3489
|
icon: freeSolidSvgIcons.faCheck
|
3489
3490
|
})), /*#__PURE__*/React__default.createElement("div", {
|
@@ -3536,6 +3537,7 @@ var ListingHorizontal = /*#__PURE__*/function (_React$Component) {
|
|
3536
3537
|
green: element.green,
|
3537
3538
|
orange: element.orange,
|
3538
3539
|
color: element.color,
|
3540
|
+
backgroundColor: element.backgroundColor,
|
3539
3541
|
title: element.title,
|
3540
3542
|
subtitle: element.subtitle,
|
3541
3543
|
date: element.date,
|