@pinuts/bsr-uikit-relaunch 0.2.60 → 0.2.61
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.
|
@@ -32,7 +32,7 @@ const CalendarToolbar = _ref => {
|
|
|
32
32
|
height: 16,
|
|
33
33
|
stroke: "currentColor"
|
|
34
34
|
}), /*#__PURE__*/_react.default.createElement("span", null, "zur\xFCck")), /*#__PURE__*/_react.default.createElement("h4", {
|
|
35
|
-
className: "rbc-toolbar-label"
|
|
35
|
+
className: "rbc-toolbar-label text-black"
|
|
36
36
|
}, label), /*#__PURE__*/_react.default.createElement(_reactBootstrap.Button, {
|
|
37
37
|
variant: "secondary",
|
|
38
38
|
onClick: navigateNext,
|
|
@@ -20,7 +20,9 @@ const Header = props => {
|
|
|
20
20
|
className: "pi-header d-sm-flex align-items-center p-3 mb-1 mt-4"
|
|
21
21
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
22
22
|
className: "w-75"
|
|
23
|
-
}, /*#__PURE__*/_react.default.createElement("h4",
|
|
23
|
+
}, /*#__PURE__*/_react.default.createElement("h4", {
|
|
24
|
+
className: "text-black"
|
|
25
|
+
}, headline)), infoText && /*#__PURE__*/_react.default.createElement(_InfoModal.default, {
|
|
24
26
|
headline: headline,
|
|
25
27
|
infoText: infoText,
|
|
26
28
|
infoButton: infoButton
|
|
@@ -19,7 +19,7 @@ const Intro = props => {
|
|
|
19
19
|
}, /*#__PURE__*/_react.default.createElement("h4", {
|
|
20
20
|
className: "d-flex align-items-center justify-content-between"
|
|
21
21
|
}, /*#__PURE__*/_react.default.createElement("span", {
|
|
22
|
-
className: "mr-2 mr-sm-0 text-
|
|
22
|
+
className: "mr-2 mr-sm-0 text-black"
|
|
23
23
|
}, headline), infobadge && /*#__PURE__*/_react.default.createElement("span", {
|
|
24
24
|
className: "badge badge-secondary rounded-pill ml-sm-3 mt-2 mt-sm-0"
|
|
25
25
|
}, infobadge)), /*#__PURE__*/_react.default.createElement("p", null, description));
|
package/dist/styles/_form.scss
CHANGED
|
@@ -629,5 +629,11 @@ input.custom-control-input label.custom-control-label {
|
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
.pi-intro {
|
|
632
|
-
|
|
632
|
+
h2, h3, h4 {
|
|
633
|
+
font-family: $fontfamily-base;
|
|
634
|
+
font-size: $h3-fontsize;
|
|
635
|
+
line-height: $h3-lineheight;
|
|
636
|
+
font-weight: $fontweight-bold;
|
|
637
|
+
color: $bsr-black-90;
|
|
638
|
+
}
|
|
633
639
|
}
|