@myst-theme/styles 0.14.3 → 0.15.1
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/button.css +5 -6
- package/landing-pages.css +28 -0
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @myst-theme/styles@0.
|
|
2
|
+
> @myst-theme/styles@0.15.1 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 3816ms.
|
package/CHANGELOG.md
CHANGED
package/app.css
CHANGED
package/button.css
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/* CSS rules for grid configuration of landing pages */
|
|
2
|
+
@layer components {
|
|
3
|
+
.grid-area-subtitle {
|
|
4
|
+
grid-area: subtitle;
|
|
5
|
+
}
|
|
6
|
+
.grid-area-title {
|
|
7
|
+
grid-area: title;
|
|
8
|
+
}
|
|
9
|
+
.grid-area-body {
|
|
10
|
+
grid-area: body;
|
|
11
|
+
}
|
|
12
|
+
.grid-area-links {
|
|
13
|
+
grid-area: links;
|
|
14
|
+
}
|
|
15
|
+
.grid-areas-just-narrow {
|
|
16
|
+
grid-template-areas:
|
|
17
|
+
'subtitle subtitle subtitle'
|
|
18
|
+
'title title title'
|
|
19
|
+
'body body body'
|
|
20
|
+
'links links links';
|
|
21
|
+
}
|
|
22
|
+
.grid-areas-just-wide {
|
|
23
|
+
grid-template-areas:
|
|
24
|
+
'subtitle subtitle subtitle'
|
|
25
|
+
'title . links'
|
|
26
|
+
'body body body';
|
|
27
|
+
}
|
|
28
|
+
}
|