@myst-theme/styles 0.3.4 → 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.
@@ -1,8 +1,8 @@
1
1
 
2
- > @myst-theme/styles@0.3.4 build
2
+ > @myst-theme/styles@0.3.5 build
3
3
  > tailwindcss -m -i ./app.css -o ../docs/public/tailwind.css
4
4
 
5
5
 
6
6
  Rebuilding...
7
7
 
8
- Done in 980ms.
8
+ Done in 1046ms.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @myst-theme/styles
2
2
 
3
+ ## 0.3.5
4
+
3
5
  ## 0.3.4
4
6
 
5
7
  ## 0.3.3
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 my-5;
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 my-5;
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 text-sm rounded border border-gray-50 shadow-xl article;
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 no-underline hover:text-blue-500 font-normal;
40
+ @apply font-normal text-blue-700 no-underline dark:text-blue-100 hover:text-blue-500;
40
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/styles",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "main": "index.js",
5
5
  "style": "app.css",
6
6
  "scripts": {
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 align-top;
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 break-words;
46
+ @apply prose break-words max-w-none prose-stone dark:prose-invert;
47
47
  }
48
48
  }