ui-kit-ck-consultant 0.5.195 → 0.5.196

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/index.css CHANGED
@@ -1561,6 +1561,8 @@
1561
1561
  border-radius: 15px 15px 15px 15px;
1562
1562
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
1563
1563
  background-color: var(--white);
1564
+ padding-left: 5px;
1565
+ padding-right: 5px;
1564
1566
  margin-bottom: 20px;
1565
1567
  flex-wrap: wrap;
1566
1568
  }
@@ -1580,7 +1582,7 @@
1580
1582
  display: inline-flex;
1581
1583
  height: 40px;
1582
1584
  padding: 10px;
1583
- margin: 5px 10px;
1585
+ margin: 5px;
1584
1586
  color: var(--black);
1585
1587
  transition: 0.4s;
1586
1588
  cursor: pointer;
@@ -1590,10 +1592,6 @@
1590
1592
  flex-shrink: 1;
1591
1593
  }
1592
1594
 
1593
- ._38JFK + ._38JFK {
1594
- margin-left: 0px;
1595
- }
1596
-
1597
1595
  ._38JFK._NU04_ {
1598
1596
  background-color: var(--primary-color);
1599
1597
  color: var(--white);
@@ -1649,6 +1647,8 @@
1649
1647
  width: 100%;
1650
1648
  align-items: center;
1651
1649
  justify-content: space-around;
1650
+ padding-left: 5px;
1651
+ padding-right: 5px;
1652
1652
  padding-top: 5px;
1653
1653
  padding-bottom: 5px;
1654
1654
  border-radius: 15px 15px 15px 15px;
@@ -1674,7 +1674,7 @@
1674
1674
  display: inline-flex;
1675
1675
  height: 40px;
1676
1676
  padding: 10px;
1677
- margin: 5px 10px;
1677
+ margin: 5px;
1678
1678
  color: var(--black);
1679
1679
  cursor: pointer;
1680
1680
  white-space: nowrap;
@@ -1709,7 +1709,7 @@
1709
1709
  ._2JnR3:not(:first-child) > div:first-child {
1710
1710
  position: absolute;
1711
1711
  top: 0;
1712
- left: -20px;
1712
+ left: -10px;
1713
1713
  border-left: solid 20px #ffffff;
1714
1714
  border-bottom: solid 20px var(--thirty-color);
1715
1715
  border-top: solid 20px var(--thirty-color);
@@ -1799,7 +1799,8 @@
1799
1799
  margin: auto;
1800
1800
  font-size: 14px;
1801
1801
  font-weight: bold;
1802
- padding-right: 20px;
1802
+ padding-right: 10px;
1803
+ padding-left: 5px;
1803
1804
  }
1804
1805
 
1805
1806
  ._CXnw- {
@@ -2708,11 +2709,12 @@
2708
2709
 
2709
2710
  ._3v-1E > span {
2710
2711
  display: block;
2711
- font-size: 16px;
2712
+ font-size: 14px;
2712
2713
  }
2713
2714
 
2714
2715
  ._3v-1E > span:last-child {
2715
- font-size: 14px;
2716
+ font-size: 16px;
2717
+ font-weight: bold;
2716
2718
  }
2717
2719
 
2718
2720
  ._1VFRz {
package/dist/index.js CHANGED
@@ -3405,10 +3405,14 @@ var ListingVerticalItem = /*#__PURE__*/function (_React$Component) {
3405
3405
  return /*#__PURE__*/React__default.createElement("div", {
3406
3406
  className: listingClass
3407
3407
  }, /*#__PURE__*/React__default.createElement("div", {
3408
- className: style$s.listing_vertical_left
3409
- }, this.props.icon ? this.props.icon : this.props.green ? /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
3408
+ className: style$s.listing_vertical_left,
3409
+ style: {
3410
+ backgroundColor: this.props.backgroundColor ? this.props.backgroundColor : 'gray',
3411
+ color: this.props.color ? this.props.color : 'white'
3412
+ }
3413
+ }, this.props.icon ? this.props.icon : /*#__PURE__*/React__default.createElement(reactFontawesome.FontAwesomeIcon, {
3410
3414
  icon: freeSolidSvgIcons.faCheck
3411
- }) : ''), /*#__PURE__*/React__default.createElement("div", {
3415
+ })), /*#__PURE__*/React__default.createElement("div", {
3412
3416
  className: style$s.listing_vertical_right
3413
3417
  }, /*#__PURE__*/React__default.createElement("span", null, this.props.date), /*#__PURE__*/React__default.createElement("span", null, this.props.title), /*#__PURE__*/React__default.createElement("span", null, this.props.subtitle)));
3414
3418
  };