@aws-amplify/ui 3.8.1 → 3.8.2
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/theme.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Do not edit directly
|
|
3
|
-
* Generated on
|
|
3
|
+
* Generated on Tue, 10 May 2022 23:12:10 GMT
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
:root, [data-amplify-theme] {
|
|
@@ -504,8 +504,6 @@
|
|
|
504
504
|
--amplify-components-loader-font-size: var(--amplify-font-sizes-xs);
|
|
505
505
|
--amplify-components-loader-height: var(--amplify-font-sizes-medium);
|
|
506
506
|
--amplify-components-loader-width: var(--amplify-font-sizes-medium);
|
|
507
|
-
--amplify-components-link-small-font-size: var(--amplify-font-sizes-small);
|
|
508
|
-
--amplify-components-link-large-font-size: var(--amplify-font-sizes-large);
|
|
509
507
|
--amplify-components-heading-line-height: var(--amplify-line-heights-small);
|
|
510
508
|
--amplify-components-heading-6-font-weight: 800;
|
|
511
509
|
--amplify-components-heading-6-font-size: var(--amplify-font-sizes-medium);
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
import { ColorValue, DesignToken
|
|
1
|
+
import { ColorValue, DesignToken } from '../types/designToken';
|
|
2
2
|
interface LinkStateTokens {
|
|
3
3
|
color: DesignToken<ColorValue>;
|
|
4
4
|
}
|
|
5
|
-
interface LinkSizeTokens {
|
|
6
|
-
fontSize: DesignToken<FontSizeValue>;
|
|
7
|
-
}
|
|
8
5
|
export interface LinkTokens {
|
|
9
6
|
active: LinkStateTokens;
|
|
10
7
|
color: DesignToken<ColorValue>;
|
|
11
8
|
focus: LinkStateTokens;
|
|
12
9
|
hover: LinkStateTokens;
|
|
13
|
-
large: LinkSizeTokens;
|
|
14
|
-
small: LinkSizeTokens;
|
|
15
10
|
visited: LinkStateTokens;
|
|
16
11
|
}
|
|
17
12
|
export declare const link: LinkTokens;
|