@motion-proto/live-tokens 0.60.0 → 0.60.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.60.1 — A drawn heading is type, not an icon
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **`SectionDivider`'s title holds still in Sketch mode.** The title is type
|
|
8
|
+
drawn as an SVG, so the sketch layer read it as one glyph and pushed it as
|
|
9
|
+
far as it pushes a 16px icon. It asked for the soft bank rather than opting
|
|
10
|
+
out, and at heading size any travel at all pulls the letters apart. The
|
|
11
|
+
title now declares `--sketch-icon-off: none`, which drops the ink mask along
|
|
12
|
+
with the displacement, so the heading stays crisp while the rest of the page
|
|
13
|
+
keeps its hand-drawn edge.
|
|
14
|
+
|
|
3
15
|
## 0.60.0 — A brief names a feeling or an idiom
|
|
4
16
|
|
|
5
17
|
### Added
|
package/package.json
CHANGED
|
@@ -545,8 +545,9 @@
|
|
|
545
545
|
color: var(--_divider-title);
|
|
546
546
|
/* The title is type that happens to be drawn as an SVG, so Sketch mode
|
|
547
547
|
reads it as one glyph and pushes it as far as it pushes a 16px icon.
|
|
548
|
-
At heading size
|
|
549
|
-
|
|
548
|
+
At heading size any travel pulls the letters apart, so it stays crisp.
|
|
549
|
+
`none` drops the ink mask along with the displacement. */
|
|
550
|
+
--sketch-icon-off: none;
|
|
550
551
|
}
|
|
551
552
|
svg.divider-label text {
|
|
552
553
|
font-family: var(--_divider-title-font-family);
|