@myst-theme/styles 0.1.31 → 0.1.33

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.31 build
2
+ > @myst-theme/styles@0.1.33 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 925ms.
8
+ Done in 716ms.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @myst-theme/styles
2
2
 
3
+ ## 0.1.33
4
+
5
+ ## 0.1.32
6
+
7
+ ### Patch Changes
8
+
9
+ - cc5a023: Add tasklists and update packages
10
+
3
11
  ## 0.1.31
4
12
 
5
13
  ## 0.1.30
package/app.css CHANGED
@@ -9,3 +9,4 @@
9
9
  @import './cross-references.css';
10
10
  @import './block-styles.css';
11
11
  @import './jupyter.css';
12
+ @import './tasklists.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/styles",
3
- "version": "0.1.31",
3
+ "version": "0.1.33",
4
4
  "main": "index.js",
5
5
  "style": "app.css",
6
6
  "scripts": {
package/tasklists.css ADDED
@@ -0,0 +1,12 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ @layer base {
6
+ .task-list-item {
7
+ @apply list-none;
8
+ }
9
+ .task-list-item-checkbox {
10
+ @apply -ml-[29px] mr-[14px] translate-y-px w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:border-blue-500 dark:focus:border-blue-600 dark:ring-offset-gray-800 dark:bg-gray-700 dark:border-gray-600;
11
+ }
12
+ }