@useblu/ocean-core 1.39.3 → 1.39.5

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.5](https://github.com/ocean-ds/ocean-web/compare/v1.39.4...v1.39.5) (2023-01-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - title cross sell card ([#1055](https://github.com/ocean-ds/ocean-web/issues/1055)) ([91ebea4](https://github.com/ocean-ds/ocean-web/commit/91ebea46de0890845a4ef1da7d39039fee39d795))
11
+
12
+ ## [1.39.4](https://github.com/ocean-ds/ocean-web/compare/v1.39.3...v1.39.4) (2022-12-22)
13
+
14
+ ### Bug Fixes
15
+
16
+ - 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))
17
+
6
18
  ## [1.39.3](https://github.com/ocean-ds/ocean-web/compare/v1.39.2...v1.39.3) (2022-12-22)
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 {
@@ -3218,29 +3219,38 @@
3218
3219
  display: flex;
3219
3220
  gap: 16px;
3220
3221
  justify-content: center;
3221
- padding: 12px 24px;
3222
+ padding: 16px;
3222
3223
  transition: background 0.1s ease-in;
3223
3224
  }
3224
- @media (max-width: 991.98px) {
3225
- .ods-cross-sell-card__content {
3226
- padding: 16px;
3227
- }
3228
- }
3229
3225
  .ods-cross-sell-card__information {
3230
3226
  width: 100%;
3231
3227
  }
3232
3228
  .ods-cross-sell-card__image {
3233
- min-height: 102px;
3234
- width: 102px;
3229
+ min-height: 80px;
3230
+ min-width: 80px;
3231
+ }
3232
+ .ods-cross-sell-card__title {
3233
+ color: #0c0d14;
3234
+ font-family: "Avenir";
3235
+ font-weight: 800;
3236
+ line-height: 1.1;
3237
+ color: white;
3238
+ font-size: 16px;
3239
+ font-weight: 700;
3240
+ line-height: 1.1;
3235
3241
  }
3236
- @media (max-width: 991.98px) {
3237
- .ods-cross-sell-card__image {
3238
- min-height: 80px;
3239
- width: 80px;
3242
+ @media (max-width: 767.98px) {
3243
+ .ods-cross-sell-card__title {
3244
+ font-size: 20px;
3240
3245
  }
3241
3246
  }
3242
3247
  .ods-cross-sell-card__description {
3248
+ color: #67697a;
3249
+ font-family: "Nunito Sans";
3250
+ font-weight: 400;
3251
+ line-height: 1.5;
3243
3252
  color: #b8c3ff;
3253
+ font-size: 14px;
3244
3254
  margin-top: 4px;
3245
3255
  }
3246
3256
  .ods-cross-sell-card__cta {
@@ -3257,17 +3267,10 @@
3257
3267
  gap: 8px;
3258
3268
  height: 48px;
3259
3269
  justify-content: space-between;
3260
- padding-left: 24px;
3261
- padding-right: 24px;
3270
+ padding: 16px;
3262
3271
  transition: background 0.1s ease-in;
3263
3272
  width: 100%;
3264
3273
  }
3265
- @media (max-width: 991.98px) {
3266
- .ods-cross-sell-card__cta {
3267
- padding-left: 16px;
3268
- padding-right: 16px;
3269
- }
3270
- }
3271
3274
  .ods-cross-sell-card__cta:hover {
3272
3275
  background: #f7f9ff;
3273
3276
  cursor: pointer;