@pinuts/bsr-uikit-relaunch 0.2.53 → 0.2.54

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.
@@ -22,7 +22,7 @@ const FieldsetWrapper = _ref => {
22
22
  const {
23
23
  label,
24
24
  helpText,
25
- headingLevel = '2',
25
+ headingLevel = '4',
26
26
  className = ''
27
27
  } = config;
28
28
  const [t] = (0, _reactI18next.useTranslation)();
@@ -39,13 +39,13 @@ const FormTitle = _ref => {
39
39
  if (current <= 0) return;
40
40
  if (!total) {
41
41
  return /*#__PURE__*/_react.default.createElement("div", {
42
- className: "step-line bg-brick rounded-pill flex-fill"
42
+ className: "step-line bg-primary rounded-pill flex-fill"
43
43
  });
44
44
  }
45
45
  const stepper = [];
46
46
  for (let i = 0; i < total; i++) {
47
47
  let cssClasses = 'step-line rounded-pill flex-fill ';
48
- cssClasses += i < current ? 'bg-brick' : 'bg-secondary';
48
+ cssClasses += i < current ? 'bg-primary' : 'bg-secondary';
49
49
  cssClasses += i + 1 !== total ? ' mr-2' : '';
50
50
  stepper.push(/*#__PURE__*/_react.default.createElement("div", {
51
51
  key: `${i}_${current}`,
@@ -588,10 +588,25 @@ form input[type="checkbox"] + label:before {
588
588
  }
589
589
  }
590
590
 
591
- fieldset > legend > h2 {
592
- font-family: $fontfamily-base;
593
- font-size: $h3-fontsize;
594
- line-height: $h3-lineheight;
595
- font-weight: $fontweight-bold;
596
- color: $bsr-black-90;
591
+ fieldset.fieldsetLegend legend {
592
+
593
+ h2, h3, h4 {
594
+ font-family: $fontfamily-base;
595
+ font-size: $h3-fontsize;
596
+ line-height: $h3-lineheight;
597
+ font-weight: $fontweight-bold;
598
+ color: $bsr-black-90;
599
+ }
600
+ }
601
+
602
+
603
+ fieldset.formInput:has(.topRow):has(input[type="checkbox"]) {
604
+ display: flex;
605
+ flex-direction: row-reverse;
606
+ align-items: baseline;
607
+ justify-content: start;
608
+ gap: $base-gap * 4;
597
609
  }
610
+ input.custom-control-input label.custom-control-label {
611
+ column-gap: $base-gap;
612
+ }
@@ -64,6 +64,7 @@ h2, .h2 {
64
64
  h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
65
65
  margin-bottom: $base-gap * 5;
66
66
  margin-top: $base-gap * 10;
67
+ color: $bsr-black-90;
67
68
 
68
69
  @media screen and (max-width: $screen-sm-max) {
69
70
  font-size: $h3-fontsize-sm;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinuts/bsr-uikit-relaunch",
3
- "version": "0.2.53",
3
+ "version": "0.2.54",
4
4
  "private": false,
5
5
  "description": "BSR UI-KIT Relaunch",
6
6
  "main": "dist/index.js",