@myst-theme/styles 0.2.0 → 0.2.2
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 +8 -0
- package/app.css +1 -0
- package/block-styles.css +5 -2
- package/grid.css +3 -0
- package/index.js +1 -0
- package/package.json +1 -1
- package/typography.css +3 -0
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/app.css
CHANGED
package/block-styles.css
CHANGED
|
@@ -4,10 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
@layer base {
|
|
6
6
|
.shaded {
|
|
7
|
-
@apply pt-5 bg-slate-100 dark:bg-slate-800
|
|
7
|
+
@apply pt-5 bg-slate-100 dark:bg-slate-800 my-5;
|
|
8
|
+
}
|
|
9
|
+
.framed {
|
|
10
|
+
@apply p-5 border shadow bg-slate-50 dark:bg-slate-800 my-5;
|
|
8
11
|
}
|
|
9
12
|
.shaded-children > * {
|
|
10
|
-
@apply p-2 bg-slate-
|
|
13
|
+
@apply p-2 bg-slate-50 dark:bg-slate-800;
|
|
11
14
|
}
|
|
12
15
|
.rounded-children > * {
|
|
13
16
|
@apply rounded;
|
package/grid.css
ADDED
package/index.js
CHANGED
package/package.json
CHANGED