@aws-amplify/ui 3.6.5 → 3.6.6
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/styles.css +7 -2
- package/dist/theme.css +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
5
|
* Do not edit directly
|
|
6
|
-
* Generated on
|
|
6
|
+
* Generated on Tue, 26 Apr 2022 22:04:22 GMT
|
|
7
7
|
*/
|
|
8
8
|
:root, [data-amplify-theme] {
|
|
9
9
|
--amplify-transforms-slide-x-large: translateX(2em);
|
|
@@ -1534,9 +1534,11 @@ h6.amplify-heading {
|
|
|
1534
1534
|
}
|
|
1535
1535
|
|
|
1536
1536
|
/* Center by default */
|
|
1537
|
+
[data-amplify-authenticator] {
|
|
1538
|
+
display: grid;
|
|
1539
|
+
}
|
|
1537
1540
|
[data-amplify-authenticator][data-variation=modal] {
|
|
1538
1541
|
overflow-y: auto;
|
|
1539
|
-
display: grid;
|
|
1540
1542
|
width: var(--amplify-components-authenticator-modal-width);
|
|
1541
1543
|
height: var(--amplify-components-authenticator-modal-height);
|
|
1542
1544
|
background-color: var(--amplify-components-authenticator-modal-background-color);
|
|
@@ -2392,6 +2394,9 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2392
2394
|
background-color: var(--amplify-components-select-option-background-color);
|
|
2393
2395
|
}
|
|
2394
2396
|
}
|
|
2397
|
+
.amplify-select option {
|
|
2398
|
+
color: initial;
|
|
2399
|
+
}
|
|
2395
2400
|
.amplify-select[data-size=small] {
|
|
2396
2401
|
min-width: var(--amplify-components-select-small-min-width);
|
|
2397
2402
|
}
|
package/dist/theme.css
CHANGED