@trebired/frontend 9.1.1 → 10.0.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/CHANGELOG.md +6 -0
- package/dist/styles/utils/base.scss +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to `@trebired/frontend` will be documented here.
|
|
|
4
4
|
|
|
5
5
|
This project follows semantic versioning once published.
|
|
6
6
|
|
|
7
|
+
## 10.0.0
|
|
8
|
+
|
|
9
|
+
### Breaking
|
|
10
|
+
|
|
11
|
+
- Flow elements are reset to `margin: 0`. `blockquote`, `dd`, `dl`, `fieldset`, `figure`, `hr`, `ol`, `p`, `pre`, and `ul` previously kept their user-agent margins — a `<p>` carried `margin: 1em 0`, so every paragraph contributed 16px of vertical space above and below itself, and `ul` and `hr` behaved the same way. `h1`-`h6` were already reset, which made the inconsistency easy to miss. Layouts that relied on those inherited margins for vertical rhythm will close up after upgrading; use `gap` on the containing flex or grid parent, or the `m-*`/`my-*` utilities where a margin is genuinely wanted.
|
|
12
|
+
|
|
7
13
|
## 9.1.1
|
|
8
14
|
|
|
9
15
|
### Fixed
|
|
@@ -92,6 +92,19 @@ body#{ns.data("sidebar-open", "true")} {
|
|
|
92
92
|
background-color: var(#{ns.css-var("selection-bg")}, color-mix(in srgb, var(#{ns.css-var("focus")}, currentColor) 50%, transparent)) !important;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
blockquote,
|
|
96
|
+
dd,
|
|
97
|
+
dl,
|
|
98
|
+
fieldset,
|
|
99
|
+
figure,
|
|
100
|
+
hr,
|
|
101
|
+
ol,
|
|
102
|
+
p,
|
|
103
|
+
pre,
|
|
104
|
+
ul {
|
|
105
|
+
margin: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
95
108
|
h1,
|
|
96
109
|
h2,
|
|
97
110
|
h3,
|