@cfpb/cfpb-design-system 3.4.11 → 3.4.13
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/CHANGELOG.md +30 -1
- package/dist/base/index.css +1 -1
- package/dist/base/index.css.map +2 -2
- package/dist/base/index.js +1 -1
- package/dist/base/index.js.map +1 -1
- package/dist/components/cfpb-expandables/index.css +1 -1
- package/dist/components/cfpb-expandables/index.css.map +2 -2
- package/dist/components/cfpb-expandables/index.js.map +1 -1
- package/dist/components/cfpb-forms/index.css +1 -1
- package/dist/components/cfpb-forms/index.css.map +2 -2
- package/dist/components/cfpb-forms/index.js.map +1 -1
- package/dist/components/cfpb-typography/index.css +1 -1
- package/dist/components/cfpb-typography/index.css.map +2 -2
- package/dist/components/cfpb-typography/index.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +2 -2
- package/dist/index.js.map +1 -1
- package/dist/utilities/index.css +1 -1
- package/dist/utilities/index.css.map +2 -2
- package/dist/utilities/index.js.map +1 -1
- package/package.json +1 -1
- package/src/base/base.scss +10 -3
- package/src/components/cfpb-typography/link.scss +3 -0
package/package.json
CHANGED
package/src/base/base.scss
CHANGED
|
@@ -29,12 +29,19 @@ textarea {
|
|
|
29
29
|
|
|
30
30
|
/*
|
|
31
31
|
* On iOS Safari the input is collapsed till it's clicked.
|
|
32
|
-
* This sets the
|
|
33
|
-
*
|
|
32
|
+
* This sets the default min width and height to what it would be if the
|
|
33
|
+
* appearance was a textfield.
|
|
34
34
|
*/
|
|
35
35
|
input[type='date'] {
|
|
36
|
-
appearance: textfield;
|
|
37
36
|
display: revert;
|
|
37
|
+
min-width: 100px;
|
|
38
|
+
min-height: 35px;
|
|
39
|
+
padding-top: 0;
|
|
40
|
+
padding-bottom: 0;
|
|
41
|
+
|
|
42
|
+
&.a-text-input--full {
|
|
43
|
+
min-width: 100%;
|
|
44
|
+
}
|
|
38
45
|
}
|
|
39
46
|
|
|
40
47
|
strong,
|