@useblu/ocean-core 1.33.0 → 1.34.0
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.34.0](https://github.com/ocean-ds/ocean-web/compare/v1.33.1...v1.34.0) (2022-08-03)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **crosssellcard:** CustomIcon + increases the clickable area for the whole component ([#992](https://github.com/ocean-ds/ocean-web/issues/992)) ([7f16ad2](https://github.com/ocean-ds/ocean-web/commit/7f16ad209c8d6beb6a330270bb70209398aaa81e))
|
|
11
|
+
|
|
6
12
|
# [1.33.0](https://github.com/ocean-ds/ocean-web/compare/v1.32.0...v1.33.0) (2022-07-07)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -3172,6 +3172,7 @@
|
|
|
3172
3172
|
|
|
3173
3173
|
.ods-cross-sell-card {
|
|
3174
3174
|
border-radius: 8px;
|
|
3175
|
+
cursor: pointer;
|
|
3175
3176
|
min-height: 156px;
|
|
3176
3177
|
width: 100%;
|
|
3177
3178
|
}
|
|
@@ -3185,6 +3186,7 @@
|
|
|
3185
3186
|
gap: 16px;
|
|
3186
3187
|
justify-content: center;
|
|
3187
3188
|
padding: 12px 24px;
|
|
3189
|
+
transition: background 0.1s ease-in;
|
|
3188
3190
|
}
|
|
3189
3191
|
@media (max-width: 991.98px) {
|
|
3190
3192
|
.ods-cross-sell-card__content {
|
|
@@ -3243,7 +3245,7 @@
|
|
|
3243
3245
|
.ods-cross-sell-card__cta:focus-visible {
|
|
3244
3246
|
outline: #0025e0 auto 1px;
|
|
3245
3247
|
}
|
|
3246
|
-
.ods-cross-sell-card__cta-icon {
|
|
3248
|
+
.ods-cross-sell-card__cta-icon svg {
|
|
3247
3249
|
color: #0025e0;
|
|
3248
3250
|
}
|
|
3249
3251
|
/*# sourceMappingURL=ocean.css.map */
|