@myst-theme/styles 0.13.4 → 0.13.6

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,11 @@
1
1
 
2
- > @myst-theme/styles@0.13.4 build
2
+ > @myst-theme/styles@0.13.6 build
3
3
  > tailwindcss -m -i ./app.css -o ../docs/public/tailwind.css
4
4
 
5
+ Browserslist: caniuse-lite is outdated. Please run:
6
+ npx update-browserslist-db@latest
7
+ Why you should do it regularly: https://github.com/browserslist/update-db#readme
5
8
 
6
9
  Rebuilding...
7
10
 
8
- Done in 4085ms.
11
+ Done in 3435ms.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @myst-theme/styles
2
2
 
3
+ ## 0.13.6
4
+
5
+ ### Patch Changes
6
+
7
+ - c2db8fb: Render links with `button` class as buttons
8
+
9
+ ## 0.13.5
10
+
3
11
  ## 0.13.4
4
12
 
5
13
  ## 0.13.3
package/app.css CHANGED
@@ -19,3 +19,4 @@
19
19
  @import './toc.css';
20
20
  @import './backmatter.css';
21
21
  @import './search.css';
22
+ @import './button.css';
package/button.css ADDED
@@ -0,0 +1,9 @@
1
+ a.button {
2
+ @apply px-4 py-2 font-bold rounded;
3
+ }
4
+ a.button {
5
+ @apply text-white bg-blue-500;
6
+ }
7
+ a.button:hover {
8
+ @apply bg-blue-700;
9
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/styles",
3
- "version": "0.13.4",
3
+ "version": "0.13.6",
4
4
  "main": "index.js",
5
5
  "style": "app.css",
6
6
  "scripts": {
package/toc.css CHANGED
@@ -25,3 +25,13 @@
25
25
  height: 0;
26
26
  }
27
27
  }
28
+
29
+ .primary-scrollbar::-webkit-scrollbar {
30
+ width: 10px;
31
+ height: 10px;
32
+ }
33
+
34
+ .primary-scrollbar::-webkit-scrollbar-thumb {
35
+ border-radius: 10px;
36
+ @apply bg-slate-300/30
37
+ }