@useblu/ocean-core 1.29.1 → 1.29.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 +6 -0
- package/ocean.css +3 -0
- package/ocean.css.map +1 -1
- package/ocean.min.css +1 -1
- package/ocean.min.css.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.29.3](https://github.com/ocean-ds/ocean-web/compare/v1.29.2...v1.29.3) (2022-03-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **badge:** adjust line heigh in every size ([#929](https://github.com/ocean-ds/ocean-web/issues/929)) ([003595e](https://github.com/ocean-ds/ocean-web/commit/003595e2b0140b51b1712214b50bfff619bd7125))
|
|
11
|
+
|
|
6
12
|
## [1.29.1](https://github.com/ocean-ds/ocean-web/compare/v1.29.0...v1.29.1) (2022-02-24)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2457,18 +2457,21 @@
|
|
|
2457
2457
|
.ods-badge--medium .ods-badge__content {
|
|
2458
2458
|
font-size: 12px;
|
|
2459
2459
|
height: 24px;
|
|
2460
|
+
line-height: 24px;
|
|
2460
2461
|
min-width: 24px;
|
|
2461
2462
|
width: 24px;
|
|
2462
2463
|
}
|
|
2463
2464
|
.ods-badge--small .ods-badge__content {
|
|
2464
2465
|
font-size: 10px;
|
|
2465
2466
|
height: 16px;
|
|
2467
|
+
line-height: 16px;
|
|
2466
2468
|
min-width: 16px;
|
|
2467
2469
|
}
|
|
2468
2470
|
.ods-badge--tiny .ods-badge__content {
|
|
2469
2471
|
display: block;
|
|
2470
2472
|
font-size: 10px;
|
|
2471
2473
|
height: 8px;
|
|
2474
|
+
line-height: 8px;
|
|
2472
2475
|
min-width: 8px;
|
|
2473
2476
|
overflow: hidden;
|
|
2474
2477
|
width: 8px;
|