@oxide/design-system 2.5.2--canary.dfce62b.0 → 2.5.2--canary.4103970.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/asciidoc.css +5 -5
- package/package.json +1 -1
- package/styles/dist/tailwind.css +41 -0
package/dist/asciidoc.css
CHANGED
|
@@ -24,6 +24,11 @@
|
|
|
24
24
|
text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
@utility inline-code {
|
|
28
|
+
@apply text-secondary;
|
|
29
|
+
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] text-[0.825em] bg-raise border-secondary;
|
|
30
|
+
}
|
|
31
|
+
|
|
27
32
|
@layer components {
|
|
28
33
|
.asciidoc-body {
|
|
29
34
|
.line-through {
|
|
@@ -286,11 +291,6 @@
|
|
|
286
291
|
@apply normal-case text-default;
|
|
287
292
|
}
|
|
288
293
|
|
|
289
|
-
.inline-code {
|
|
290
|
-
@apply text-secondary;
|
|
291
|
-
@apply ml-[1px] mr-[1px] rounded border px-[4px] py-[1px] align-[1px] text-[0.825em] bg-raise border-secondary;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
294
|
p code,
|
|
295
295
|
h1 code,
|
|
296
296
|
h2 code,
|
package/package.json
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Set the default cursor for buttons.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
button,
|
|
6
|
+
[role='button'] {
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/*
|
|
11
|
+
Make sure disabled buttons don't get the pointer cursor.
|
|
12
|
+
*/
|
|
13
|
+
:disabled {
|
|
14
|
+
cursor: default;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@theme {
|
|
18
|
+
--breakpoint-300: 300px;
|
|
19
|
+
--breakpoint-400: 400px;
|
|
20
|
+
--breakpoint-500: 500px;
|
|
21
|
+
--breakpoint-600: 600px;
|
|
22
|
+
--breakpoint-700: 700px;
|
|
23
|
+
--breakpoint-800: 800px;
|
|
24
|
+
--breakpoint-900: 900px;
|
|
25
|
+
--breakpoint-1000: 1000px;
|
|
26
|
+
--breakpoint-1200: 1200px;
|
|
27
|
+
--breakpoint-1400: 1400px;
|
|
28
|
+
--breakpoint-1600: 1600px;
|
|
29
|
+
|
|
30
|
+
--container-300: 300px;
|
|
31
|
+
--container-400: 400px;
|
|
32
|
+
--container-500: 500px;
|
|
33
|
+
--container-600: 600px;
|
|
34
|
+
--container-700: 700px;
|
|
35
|
+
--container-800: 800px;
|
|
36
|
+
--container-900: 900px;
|
|
37
|
+
--container-1000: 1000px;
|
|
38
|
+
--container-1200: 1200px;
|
|
39
|
+
--container-1400: 1400px;
|
|
40
|
+
--container-1600: 1600px;
|
|
41
|
+
}
|