Skip to content

Commit d87d97e

Browse files
authored
Merge pull request #461 from kne-union/release
Release
2 parents 18302cb + 5425f71 commit d87d97e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kne-components/components-core",
3-
"version": "0.3.29",
3+
"version": "0.3.30",
44
"files": [
55
"build"
66
],

src/components/Modal/Modal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const ModalOuter = ({
112112
targetProps,
113113
}) => {
114114
const modalBodyRef = useRef(null);
115-
return (<div className={style["modal-outer"]} data-testid="components-core-modal">
115+
return (<div className={classnames(style["modal-outer"], 'modal-container')} data-testid="components-core-modal">
116116
{closable === false ? null : (<Button
117117
data-testid="components-core-modal-close-btn"
118118
className={classnames(style["modal-close"], "modal-close")}

src/components/Modal/style.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
}
136136

137137
.modal-body {
138-
--modal-height: calc(100vh - 160px);
138+
--modal-height: calc(100vh - 60px);
139139
max-height: var(--modal-height);
140140
min-height: var(--min-modal-height);
141141

0 commit comments

Comments
 (0)