@useblu/ocean-core 1.35.0 → 1.35.2
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 +8 -5
- 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.35.2](https://github.com/ocean-ds/ocean-web/compare/v1.35.1...v1.35.2) (2022-10-06)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- link component error ([#1021](https://github.com/ocean-ds/ocean-web/issues/1021)) ([471b21f](https://github.com/ocean-ds/ocean-web/commit/471b21facdce758e6e201965aa471c6be3a8f70c))
|
|
11
|
+
|
|
6
12
|
# [1.35.0](https://github.com/ocean-ds/ocean-web/compare/v1.34.2...v1.35.0) (2022-10-03)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -2292,12 +2292,9 @@
|
|
|
2292
2292
|
}
|
|
2293
2293
|
|
|
2294
2294
|
.ods-link {
|
|
2295
|
-
align-items: center;
|
|
2296
2295
|
cursor: pointer;
|
|
2297
|
-
display: flex;
|
|
2298
2296
|
font-family: "Nunito Sans";
|
|
2299
2297
|
font-weight: 600;
|
|
2300
|
-
justify-content: center;
|
|
2301
2298
|
line-height: 1;
|
|
2302
2299
|
}
|
|
2303
2300
|
.ods-link--sm {
|
|
@@ -2327,8 +2324,14 @@
|
|
|
2327
2324
|
color: #5872f5;
|
|
2328
2325
|
text-decoration: underline;
|
|
2329
2326
|
}
|
|
2330
|
-
.ods-
|
|
2331
|
-
|
|
2327
|
+
.ods-link--with-icon {
|
|
2328
|
+
align-items: center;
|
|
2329
|
+
display: flex;
|
|
2330
|
+
flex-direction: row;
|
|
2331
|
+
justify-content: center;
|
|
2332
|
+
}
|
|
2333
|
+
.ods-link svg {
|
|
2334
|
+
margin-left: 4px;
|
|
2332
2335
|
}
|
|
2333
2336
|
|
|
2334
2337
|
.ods-list {
|