@myst-theme/styles 0.3.3 → 0.3.5
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +4 -0
- package/block-styles.css +2 -2
- package/hover.css +3 -2
- package/package.json +1 -1
- package/typography.css +2 -2
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/block-styles.css
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
@layer base {
|
|
6
6
|
.shaded {
|
|
7
|
-
@apply pt-5 bg-slate-100 dark:bg-slate-800
|
|
7
|
+
@apply pt-5 my-5 bg-slate-100 dark:bg-slate-800;
|
|
8
8
|
}
|
|
9
9
|
.framed {
|
|
10
|
-
@apply p-5 border shadow bg-slate-50 dark:bg-slate-800
|
|
10
|
+
@apply p-5 my-5 border shadow bg-slate-50 dark:bg-slate-800;
|
|
11
11
|
}
|
|
12
12
|
.shaded-children > * {
|
|
13
13
|
@apply p-2 bg-slate-50 dark:bg-slate-800;
|
package/hover.css
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
.hover-card-content {
|
|
2
2
|
animation-duration: 0.6s;
|
|
3
3
|
animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
|
|
4
|
+
z-index: 10;
|
|
4
5
|
}
|
|
5
6
|
.hover-card-content[data-side='top'] {
|
|
6
7
|
animation-name: slideUp;
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
.hover-document {
|
|
35
|
-
@apply bg-white dark:bg-slate-800
|
|
36
|
+
@apply text-sm bg-white border rounded shadow-xl dark:bg-slate-800 border-gray-50 article;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
.hover-link {
|
|
39
|
-
@apply text-blue-700 dark:text-blue-100
|
|
40
|
+
@apply font-normal text-blue-700 no-underline dark:text-blue-100 hover:text-blue-500;
|
|
40
41
|
}
|
package/package.json
CHANGED
package/typography.css
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
@layer base {
|
|
12
12
|
.prose table td {
|
|
13
|
-
@apply p-1 sm:p-2
|
|
13
|
+
@apply p-1 align-top sm:p-2;
|
|
14
14
|
}
|
|
15
15
|
.prose table p,
|
|
16
16
|
.prose table li {
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
min-height: calc(100vh);
|
|
44
44
|
}
|
|
45
45
|
.article {
|
|
46
|
-
@apply prose max-w-none prose-stone dark:prose-invert
|
|
46
|
+
@apply prose break-words max-w-none prose-stone dark:prose-invert;
|
|
47
47
|
}
|
|
48
48
|
}
|