@saooti/octopus-sdk 35.2.10 → 35.2.11
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saooti/octopus-sdk",
|
|
3
|
-
"version": "35.2.
|
|
3
|
+
"version": "35.2.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Javascript SDK for using octopus",
|
|
6
6
|
"author": "Saooti",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"test": "jest --coverage"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
+
"@popperjs/core": "^2.11.6",
|
|
19
20
|
"@saooti/octopus-api": "^0.34.3",
|
|
20
21
|
"@vue/cli": "^5.0.8",
|
|
21
22
|
"@vue/compat": "^3.2.45",
|
|
@@ -318,17 +318,20 @@ export default defineComponent({
|
|
|
318
318
|
|
|
319
319
|
<style lang="scss">
|
|
320
320
|
.octopus-app{
|
|
321
|
-
#newsletter-modal
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
321
|
+
#newsletter-modal{
|
|
322
|
+
textarea {
|
|
323
|
+
border: 2px solid #eee;
|
|
324
|
+
height: 200px;
|
|
325
|
+
padding: 1em;
|
|
326
|
+
border-radius: 1em;
|
|
327
|
+
}
|
|
328
|
+
.octopus-modal-dialog{
|
|
329
|
+
max-width: 80%;
|
|
330
|
+
max-height: calc(100% - 3.5rem) !important;
|
|
331
|
+
}
|
|
332
|
+
.octopus-modal-content{
|
|
333
|
+
max-height: calc(100vh - 100px) !important;
|
|
334
|
+
}
|
|
327
335
|
}
|
|
328
|
-
|
|
329
|
-
.modal-dialog {
|
|
330
|
-
max-width: 60%;
|
|
331
|
-
}
|
|
332
|
-
}
|
|
333
336
|
}
|
|
334
337
|
</style>
|