@myst-theme/styles 0.9.3 → 0.9.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 +9 -0
- package/app.css +1 -0
- package/backmatter.css +9 -0
- package/index.js +6 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @myst-theme/styles@0.9.
|
|
2
|
+
> @myst-theme/styles@0.9.5 build
|
|
3
3
|
> tailwindcss -m -i ./app.css -o ../docs/public/tailwind.css
|
|
4
4
|
|
|
5
5
|
Browserslist: caniuse-lite is outdated. Please run:
|
|
@@ -8,4 +8,4 @@ Browserslist: caniuse-lite is outdated. Please run:
|
|
|
8
8
|
|
|
9
9
|
Rebuilding...
|
|
10
10
|
|
|
11
|
-
Done in
|
|
11
|
+
Done in 2149ms.
|
package/CHANGELOG.md
CHANGED
package/app.css
CHANGED
package/backmatter.css
ADDED
package/index.js
CHANGED
|
@@ -85,6 +85,7 @@ const themeExtensions = {
|
|
|
85
85
|
code: {
|
|
86
86
|
fontWeight: '400',
|
|
87
87
|
},
|
|
88
|
+
// These code before/after elements are hard coded to remove the backticks, "`", that are in by default.
|
|
88
89
|
'code::before': {
|
|
89
90
|
content: '',
|
|
90
91
|
},
|
|
@@ -101,6 +102,11 @@ const themeExtensions = {
|
|
|
101
102
|
marginTop: '0.25rem',
|
|
102
103
|
marginBottom: '0.25rem',
|
|
103
104
|
},
|
|
105
|
+
// Tailwind doesn't style h5 or h6 at all so this makes them look like headers
|
|
106
|
+
'h5, h6': {
|
|
107
|
+
color: 'var(--tw-prose-headings)',
|
|
108
|
+
fontWeight: '500',
|
|
109
|
+
},
|
|
104
110
|
},
|
|
105
111
|
},
|
|
106
112
|
invert: {
|