@trebired/frontend 8.4.2 → 8.4.3
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,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 8.4.3
|
|
4
|
+
|
|
5
|
+
- Increased the disclosure card's padding from `--tbf-gap-xs` to `--tbf-gap-sm`. In apps whose theme collapses `gap-xs`/`gap-xs2` down to the same very small value, `padding: var(--tbf-gap-xs)` rendered close enough to 0 that the card read as having no padding at all.
|
|
6
|
+
- Restored the sidebar's block-start padding (previously zeroed out), now exposed as `--tbf-sidebar-padding-block-start` (default `20px`) alongside the existing `--tbf-sidebar-padding-block-end`.
|
|
7
|
+
|
|
3
8
|
## 8.4.2
|
|
4
9
|
|
|
5
10
|
- Removed the disclosure trigger's hover color/underline on its label text, leaving the cursor as the only hover affordance now that the trigger has no box chrome of its own.
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
min-width: 0;
|
|
25
25
|
flex-direction: column;
|
|
26
26
|
gap: var(#{ns.css-var("gap-sm")}, 8px);
|
|
27
|
-
padding-block:
|
|
27
|
+
padding-block: var(#{ns.css-var("sidebar-padding-block-start")}, 20px) var(#{ns.css-var("sidebar-padding-block-end")}, 14px);
|
|
28
28
|
padding-inline: var(#{ns.css-var("sidebar-padding-inline")}, 10px);
|
|
29
29
|
overflow-x: hidden;
|
|
30
30
|
overflow-y: auto;
|