mac-human-design 0.1.6 → 0.1.7
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 +13 -0
- package/package.json +1 -1
- package/src/styles/macosBaseUi.css +7 -3
package/changelog.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This file tracks changes between published npm versions of `mac-human-design`.
|
|
4
4
|
|
|
5
|
+
## 0.1.7
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Centered `SymbolIconButton` content by giving
|
|
10
|
+
`hd-mac-symbol-icon-button` the same grid-based icon alignment behavior as
|
|
11
|
+
the shared macOS icon button class, while preserving its existing 30px button
|
|
12
|
+
sizing.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Bumped the package to `0.1.7`.
|
|
17
|
+
|
|
5
18
|
## 0.1.6
|
|
6
19
|
|
|
7
20
|
### Added
|
package/package.json
CHANGED
|
@@ -228,14 +228,18 @@
|
|
|
228
228
|
box-shadow: none;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
|
-
.hd-mac-icon-button
|
|
231
|
+
.hd-mac-icon-button,
|
|
232
|
+
.hd-mac-symbol-icon-button {
|
|
232
233
|
display: inline-grid;
|
|
234
|
+
place-items: center;
|
|
235
|
+
padding: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.hd-mac-icon-button {
|
|
233
239
|
width: 28px;
|
|
234
240
|
min-width: 28px;
|
|
235
241
|
height: 28px;
|
|
236
242
|
min-height: 28px;
|
|
237
|
-
place-items: center;
|
|
238
|
-
padding: 0;
|
|
239
243
|
}
|
|
240
244
|
|
|
241
245
|
.hd-mac-help-button {
|