@deque/cauldron-styles 6.7.0-canary.8f276b61 → 6.7.0-canary.8f770f32
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/index.css +6 -9
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -267,7 +267,6 @@ button,
|
|
|
267
267
|
|
|
268
268
|
a {
|
|
269
269
|
color: var(--link-text-color);
|
|
270
|
-
font-weight: var(--font-weight-medium);
|
|
271
270
|
}
|
|
272
271
|
|
|
273
272
|
p {
|
|
@@ -1238,6 +1237,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1238
1237
|
button.Link {
|
|
1239
1238
|
cursor: pointer;
|
|
1240
1239
|
font-size: inherit;
|
|
1240
|
+
font-weight: var(--font-weight-normal);
|
|
1241
1241
|
}
|
|
1242
1242
|
|
|
1243
1243
|
.Button--primary:focus,
|
|
@@ -2026,8 +2026,6 @@ a.IconButton {
|
|
|
2026
2026
|
.Link {
|
|
2027
2027
|
text-decoration: underline;
|
|
2028
2028
|
color: var(--link-text-color);
|
|
2029
|
-
font-weight: var(--font-weight-medium);
|
|
2030
|
-
display: inline-block;
|
|
2031
2029
|
padding: var(--space-quarter);
|
|
2032
2030
|
background: transparent;
|
|
2033
2031
|
vertical-align: baseline;
|
|
@@ -2043,12 +2041,11 @@ a.IconButton {
|
|
|
2043
2041
|
outline-offset: 0;
|
|
2044
2042
|
}
|
|
2045
2043
|
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
font-weight: var(--font-weight-normal);
|
|
2044
|
+
.Link:has(.Icon) {
|
|
2045
|
+
display: inline-flex;
|
|
2046
|
+
align-items: center;
|
|
2047
|
+
gap: var(--space-half);
|
|
2048
|
+
flex-wrap: wrap;
|
|
2052
2049
|
}
|
|
2053
2050
|
|
|
2054
2051
|
:root {
|
package/package.json
CHANGED