@useblu/ocean-core 1.47.0 → 1.47.1
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 -2
- 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.47.1](https://github.com/ocean-ds/ocean-web/compare/v1.47.0...v1.47.1) (2023-07-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Center checkbox icon ([#1074](https://github.com/ocean-ds/ocean-web/issues/1074)) ([6441262](https://github.com/ocean-ds/ocean-web/commit/6441262c2382bf544a0097e8ce9d235a61a284f6))
|
|
11
|
+
|
|
6
12
|
# [1.47.0](https://github.com/ocean-ds/ocean-web/compare/v1.46.3...v1.47.0) (2023-06-27)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/ocean.css
CHANGED
|
@@ -1511,11 +1511,12 @@
|
|
|
1511
1511
|
.ods-checkbox__checkmark::after {
|
|
1512
1512
|
border: solid #fff;
|
|
1513
1513
|
border-width: 0 2px 2px 0;
|
|
1514
|
+
box-sizing: border-box;
|
|
1514
1515
|
content: "";
|
|
1515
1516
|
display: none;
|
|
1516
1517
|
height: 10px;
|
|
1517
|
-
margin-left:
|
|
1518
|
-
margin-top:
|
|
1518
|
+
margin-left: 6px;
|
|
1519
|
+
margin-top: 3px;
|
|
1519
1520
|
transform: rotate(40deg);
|
|
1520
1521
|
width: 6px;
|
|
1521
1522
|
}
|