@oxide/design-system 1.7.2 → 1.8.0--canary.7d8d904.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/README.md +3 -1
- package/components/dist/asciidoc.css +15 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,9 @@ back with figma.
|
|
|
35
35
|
## Exporting Icons
|
|
36
36
|
|
|
37
37
|
Icons are also exported from figma using
|
|
38
|
-
[figma export cli](https://figma-export.marcomontalbano.com/).
|
|
38
|
+
[figma export cli](https://figma-export.marcomontalbano.com/). A PR should be opened
|
|
39
|
+
automatically for updating icons via the
|
|
40
|
+
[update-icons workflow](.github/workflows/update-icons.yaml).
|
|
39
41
|
|
|
40
42
|
Icons are processed and exported as SVGs for direct use in environments where SVGR is
|
|
41
43
|
supported (like our web console). However, for other internal sites such as the marketing
|
|
@@ -7,12 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
@layer components {
|
|
10
|
-
.accent-link {
|
|
11
|
-
@apply text-accent-secondary hover:text-accent;
|
|
12
|
-
text-decoration: underline;
|
|
13
|
-
text-decoration-color: var(--content-accent-tertiary);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
10
|
.asciidoc-body .line-through {
|
|
17
11
|
text-decoration: line-through;
|
|
18
12
|
}
|
|
@@ -284,8 +278,8 @@
|
|
|
284
278
|
.asciidoc-body h3 code,
|
|
285
279
|
.asciidoc-body h4 code,
|
|
286
280
|
.asciidoc-body h5 code,
|
|
287
|
-
.asciidoc-body table code
|
|
288
|
-
@apply text-
|
|
281
|
+
.asciidoc-body table code {
|
|
282
|
+
@apply text-secondary;
|
|
289
283
|
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] bg-raise border-secondary;
|
|
290
284
|
}
|
|
291
285
|
|
|
@@ -306,6 +300,19 @@
|
|
|
306
300
|
@apply overflow-x-auto !text-[13px] text-mono-code;
|
|
307
301
|
}
|
|
308
302
|
|
|
303
|
+
.asciidoc-body h1 code,
|
|
304
|
+
.asciidoc-body h2 code,
|
|
305
|
+
.asciidoc-body h3 code,
|
|
306
|
+
.asciidoc-body h4 code,
|
|
307
|
+
.asciidoc-body h5 code {
|
|
308
|
+
@apply text-[0.825em];
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.asciidoc-body .paragraph > code,
|
|
312
|
+
.asciidoc-body p code {
|
|
313
|
+
@apply text-[0.825rem];
|
|
314
|
+
}
|
|
315
|
+
|
|
309
316
|
.asciidoc-body code {
|
|
310
317
|
font-feature-settings: 'calt' 0;
|
|
311
318
|
}
|