@moldea.ai/website-ui 1.1.3 → 1.1.5
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/README.md +1 -1
- package/package.json +1 -1
- package/src/styles.css +5 -0
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ The package owns the reusable design tokens, global website primitives, interact
|
|
|
7
7
|
## Install after release
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
pnpm add @moldea.ai/website-ui@1.1.
|
|
10
|
+
pnpm add @moldea.ai/website-ui@1.1.5
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
The package currently supports Astro `7.2.2` and Tailwind CSS `4.3.3` exactly. Import the shared stylesheet once from the website's global stylesheet:
|
package/package.json
CHANGED
package/src/styles.css
CHANGED
|
@@ -204,6 +204,11 @@
|
|
|
204
204
|
@apply w-full border-collapse text-sm;
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
+
.prose-moldea .table-scroll table {
|
|
208
|
+
/* let the frame own the rounded perimeter while collapsed cell borders draw the grid */
|
|
209
|
+
@apply my-0 border-hidden;
|
|
210
|
+
}
|
|
211
|
+
|
|
207
212
|
.prose-moldea th {
|
|
208
213
|
@apply bg-muted text-start font-semibold text-foreground;
|
|
209
214
|
}
|