@aws-amplify/ui 3.2.1 → 3.3.0
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/esm/index.js +6 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +15 -6
- package/dist/index.js +11 -11
- package/dist/index.js.map +1 -1
- package/dist/styles.css +6 -1
- 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, 10 Mar 2022 23:10:07 GMT
|
|
7
7
|
*/
|
|
8
8
|
:root, [data-amplify-theme] {
|
|
9
9
|
--amplify-transforms-slide-x-large: translateX(2em);
|
|
@@ -1553,6 +1553,11 @@ h6.amplify-heading {
|
|
|
1553
1553
|
[data-amplify-authenticator] [data-state=inactive] {
|
|
1554
1554
|
background-color: var(--amplify-components-authenticator-state-inactive-background-color);
|
|
1555
1555
|
}
|
|
1556
|
+
@media (max-width: 26rem) {
|
|
1557
|
+
[data-amplify-authenticator] [data-amplify-sign-up-errors] {
|
|
1558
|
+
font-size: 0.688rem;
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1556
1561
|
|
|
1557
1562
|
.amplify-card {
|
|
1558
1563
|
background-color: var(--amplify-components-card-background-color);
|
package/dist/theme.css
CHANGED