@myst-theme/styles 0.1.25 → 0.1.27

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.1.25 build
2
+ > @myst-theme/styles@0.1.27 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 453ms.
8
+ Done in 1004ms.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @myst-theme/styles
2
2
 
3
+ ## 0.1.27
4
+
5
+ ### Patch Changes
6
+
7
+ - 4305aba: Add inline-image styles
8
+ - 07ab923: Include the jupyter css
9
+
10
+ ## 0.1.26
11
+
3
12
  ## 0.1.25
4
13
 
5
14
  ## 0.1.24
package/app.css CHANGED
@@ -8,3 +8,4 @@
8
8
  @import './math.css';
9
9
  @import './cross-references.css';
10
10
  @import './block-styles.css';
11
+ @import './jupyter.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/styles",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "main": "index.js",
5
5
  "style": "app.css",
6
6
  "scripts": {
package/typography.css CHANGED
@@ -30,6 +30,10 @@
30
30
  .prose dd {
31
31
  @apply ml-8;
32
32
  }
33
+ .prose p img {
34
+ margin: 0;
35
+ display: inline-block;
36
+ }
33
37
  article.content {
34
38
  min-height: calc(100vh);
35
39
  }