@saooti/octopus-sdk 36.0.1 → 36.0.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/package.json
CHANGED
|
@@ -77,8 +77,8 @@ export default defineComponent({
|
|
|
77
77
|
position: relative;
|
|
78
78
|
pointer-events: none;
|
|
79
79
|
margin: 1.75rem auto;
|
|
80
|
-
max-
|
|
81
|
-
|
|
80
|
+
max-width: 800px;
|
|
81
|
+
max-height: 90vh;
|
|
82
82
|
width: 100%;
|
|
83
83
|
display: flex;
|
|
84
84
|
color: #353535 !important;
|
|
@@ -88,7 +88,6 @@ export default defineComponent({
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
.octopus-modal-body{
|
|
91
|
-
position: relative;
|
|
92
91
|
flex: 1 1 auto;
|
|
93
92
|
padding: 1rem;
|
|
94
93
|
overflow-x: auto;
|
|
@@ -113,7 +112,6 @@ export default defineComponent({
|
|
|
113
112
|
min-height: 300px;
|
|
114
113
|
}
|
|
115
114
|
.octopus-modal-content{
|
|
116
|
-
position: relative;
|
|
117
115
|
display: flex;
|
|
118
116
|
flex-direction: column;
|
|
119
117
|
pointer-events: auto;
|
|
@@ -123,7 +121,7 @@ export default defineComponent({
|
|
|
123
121
|
border: 0;
|
|
124
122
|
outline: 0;
|
|
125
123
|
height: auto !important;
|
|
126
|
-
max-height:
|
|
124
|
+
max-height: initial !important;
|
|
127
125
|
border-radius: 0.8rem;
|
|
128
126
|
box-shadow: 0 0.2rem 0.5rem rgba(40,40,40,.3);
|
|
129
127
|
}
|
package/src/sass/_variables.scss
CHANGED