@myst-theme/styles 0.1.37 → 0.2.0
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/block-styles.css +2 -2
- package/figures.css +8 -0
- package/grid-system.css +2 -0
- package/math.css +3 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
package/block-styles.css
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
|
|
5
5
|
@layer base {
|
|
6
6
|
.shaded {
|
|
7
|
-
@apply
|
|
7
|
+
@apply pt-5 bg-slate-100 dark:bg-slate-800 mb-3;
|
|
8
8
|
}
|
|
9
9
|
.shaded-children > * {
|
|
10
|
-
@apply p-2 bg-slate-100;
|
|
10
|
+
@apply p-2 bg-slate-100 dark:bg-slate-800;
|
|
11
11
|
}
|
|
12
12
|
.rounded-children > * {
|
|
13
13
|
@apply rounded;
|
package/figures.css
CHANGED
package/grid-system.css
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
.article-grid > * {
|
|
10
10
|
/* The default is spanning the body for any child component */
|
|
11
11
|
@apply col-body;
|
|
12
|
+
/* Grids do not have margin-collapse, so each direct child needs to be addressed */
|
|
13
|
+
margin-top: 0 !important;
|
|
12
14
|
}
|
|
13
15
|
.article-grid-gap {
|
|
14
16
|
@apply gap-1 md:gap-2 xl:gap-3 2xl:gap-4;
|
package/math.css
CHANGED