@justai/cuts 0.27.0 → 0.27.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/package.json +1 -1
- package/src/Posts.astro +4 -1
package/package.json
CHANGED
package/src/Posts.astro
CHANGED
|
@@ -102,7 +102,10 @@ const vars = [
|
|
|
102
102
|
|
|
103
103
|
/* the maker's signature — every persona signs off with justai.pro */
|
|
104
104
|
.z-foot { text-align: center; color: var(--text-dim); font-size: var(--fs-2xs); padding-block: 24px max(16px, env(safe-area-inset-bottom)); }
|
|
105
|
-
|
|
105
|
+
/* Underlined, deliberately: a link inside body text must not rely on colour alone to be seen
|
|
106
|
+
(WCAG link-in-text-block — the twins' quality gate flagged it where accent-vs-dim contrast ran
|
|
107
|
+
thin). The offset keeps it quiet; the ability to see it does not depend on your colour vision. */
|
|
108
|
+
.z-foot a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
|
|
106
109
|
</style>
|
|
107
110
|
|
|
108
111
|
<script>
|