@useblu/ocean-core 1.39.2 → 1.39.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 -1
- 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.39.3](https://github.com/ocean-ds/ocean-web/compare/v1.39.2...v1.39.3) (2022-12-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- adjust sub header padding and height ([#1050](https://github.com/ocean-ds/ocean-web/issues/1050)) ([8241d09](https://github.com/ocean-ds/ocean-web/commit/8241d0941c4a98de04a30f99aa236e35579ccfbf))
|
|
11
|
+
|
|
6
12
|
## [1.39.2](https://github.com/ocean-ds/ocean-web/compare/v1.39.1...v1.39.2) (2022-12-21)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/ocean.css
CHANGED
|
@@ -2663,11 +2663,13 @@
|
|
|
2663
2663
|
}
|
|
2664
2664
|
|
|
2665
2665
|
.ods-sub-header {
|
|
2666
|
+
align-items: center;
|
|
2666
2667
|
background-color: #f7f9ff;
|
|
2667
2668
|
box-sizing: border-box;
|
|
2668
2669
|
display: flex;
|
|
2669
2670
|
justify-content: space-between;
|
|
2670
|
-
|
|
2671
|
+
min-height: 40px;
|
|
2672
|
+
padding: 8px 16px;
|
|
2671
2673
|
width: 100%;
|
|
2672
2674
|
}
|
|
2673
2675
|
|