@aws-amplify/ui 3.6.4 → 3.6.7
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 +25 -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 Thu, 28 Apr 2022 21:06:32 GMT
|
|
7
7
|
*/
|
|
8
8
|
:root, [data-amplify-theme] {
|
|
9
9
|
--amplify-transforms-slide-x-large: translateX(2em);
|
|
@@ -1534,8 +1534,11 @@ h6.amplify-heading {
|
|
|
1534
1534
|
}
|
|
1535
1535
|
|
|
1536
1536
|
/* Center by default */
|
|
1537
|
-
[data-amplify-authenticator]
|
|
1537
|
+
[data-amplify-authenticator] {
|
|
1538
1538
|
display: grid;
|
|
1539
|
+
}
|
|
1540
|
+
[data-amplify-authenticator][data-variation=modal] {
|
|
1541
|
+
overflow-y: auto;
|
|
1539
1542
|
width: var(--amplify-components-authenticator-modal-width);
|
|
1540
1543
|
height: var(--amplify-components-authenticator-modal-height);
|
|
1541
1544
|
background-color: var(--amplify-components-authenticator-modal-background-color);
|
|
@@ -1576,6 +1579,23 @@ h6.amplify-heading {
|
|
|
1576
1579
|
}
|
|
1577
1580
|
}
|
|
1578
1581
|
|
|
1582
|
+
.amplify-authenticator__column {
|
|
1583
|
+
display: flex;
|
|
1584
|
+
flex-direction: column;
|
|
1585
|
+
}
|
|
1586
|
+
|
|
1587
|
+
.amplify-authenticator__subtitle {
|
|
1588
|
+
margin-bottom: var(--amplify-space-medium);
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.amplify-authenticator__heading {
|
|
1592
|
+
font-size: var(--amplify-font-sizes-xl);
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1595
|
+
.amplify-authenticator__federated-text {
|
|
1596
|
+
align-self: center;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1579
1599
|
.amplify-card {
|
|
1580
1600
|
background-color: var(--amplify-components-card-background-color);
|
|
1581
1601
|
border-radius: var(--amplify-components-card-border-radius);
|
|
@@ -2391,6 +2411,9 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
2391
2411
|
background-color: var(--amplify-components-select-option-background-color);
|
|
2392
2412
|
}
|
|
2393
2413
|
}
|
|
2414
|
+
.amplify-select option {
|
|
2415
|
+
color: initial;
|
|
2416
|
+
}
|
|
2394
2417
|
.amplify-select[data-size=small] {
|
|
2395
2418
|
min-width: var(--amplify-components-select-small-min-width);
|
|
2396
2419
|
}
|
package/dist/theme.css
CHANGED