@occmundial/occ-atomic 1.21.0 → 1.21.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 +8 -0
- package/build/Modal/styles.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [1.21.1](https://github.com/occmundial/occ-atomic/compare/v1.21.0...v1.21.1) (2022-05-27)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Change in dimensions of full screen modal ([c3434a2](https://github.com/occmundial/occ-atomic/commit/c3434a28d1bf6455205b5f37419cd14567ddb126))
|
7
|
+
* Ignore plugin directory in doc gen ([d06e206](https://github.com/occmundial/occ-atomic/commit/d06e2064f9ec30066fef70432122d3d49a6ae99f))
|
8
|
+
|
1
9
|
# [1.21.0](https://github.com/occmundial/occ-atomic/compare/v1.20.1...v1.21.0) (2022-02-16)
|
2
10
|
|
3
11
|
|
package/build/Modal/styles.js
CHANGED
@@ -67,8 +67,8 @@ var _default = {
|
|
67
67
|
},
|
68
68
|
cardWrapper: {
|
69
69
|
position: 'relative',
|
70
|
-
maxWidth: '
|
71
|
-
maxHeight: '
|
70
|
+
maxWidth: '100%',
|
71
|
+
maxHeight: '100%'
|
72
72
|
},
|
73
73
|
cardBlock: _defineProperty({
|
74
74
|
margin: _spacing["default"].gutter
|
@@ -92,7 +92,7 @@ var _default = {
|
|
92
92
|
},
|
93
93
|
minHeight: function minHeight(_ref3) {
|
94
94
|
var fullSize = _ref3.fullSize;
|
95
|
-
return fullSize && '
|
95
|
+
return fullSize && '100%';
|
96
96
|
},
|
97
97
|
borderRadius: function borderRadius(_ref4) {
|
98
98
|
var fullSize = _ref4.fullSize;
|
package/package.json
CHANGED