@useblu/ocean-core 1.39.2 → 1.39.4

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
@@ -3,6 +3,18 @@
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.4](https://github.com/ocean-ds/ocean-web/compare/v1.39.3...v1.39.4) (2022-12-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adds a 8px margin to the input component label ([#1052](https://github.com/ocean-ds/ocean-web/issues/1052)) ([aa70f39](https://github.com/ocean-ds/ocean-web/commit/aa70f39a41e81c8a4af1d2d2eaaf89b1ef6cace1))
11
+
12
+ ## [1.39.3](https://github.com/ocean-ds/ocean-web/compare/v1.39.2...v1.39.3) (2022-12-22)
13
+
14
+ ### Bug Fixes
15
+
16
+ - 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))
17
+
6
18
  ## [1.39.2](https://github.com/ocean-ds/ocean-web/compare/v1.39.1...v1.39.2) (2022-12-21)
7
19
 
8
20
  ### Bug Fixes
package/ocean.css CHANGED
@@ -1052,6 +1052,7 @@
1052
1052
  align-items: center;
1053
1053
  display: flex;
1054
1054
  flex-direction: row;
1055
+ margin-bottom: 8px;
1055
1056
  text-align: center;
1056
1057
  }
1057
1058
  .ods-form-control__label {
@@ -2663,11 +2664,13 @@
2663
2664
  }
2664
2665
 
2665
2666
  .ods-sub-header {
2667
+ align-items: center;
2666
2668
  background-color: #f7f9ff;
2667
2669
  box-sizing: border-box;
2668
2670
  display: flex;
2669
2671
  justify-content: space-between;
2670
- padding: 12px 16px 8px 16px;
2672
+ min-height: 40px;
2673
+ padding: 8px 16px;
2671
2674
  width: 100%;
2672
2675
  }
2673
2676