releasebird-javascript-sdk 1.0.86 → 1.0.87
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/build/index.js +1 -1
- package/package.json +1 -1
- package/published/1.0.87/index.js +1 -0
- package/published/latest/index.js +1 -1
- package/src/RbirdFormManager.js +16 -2
package/src/RbirdFormManager.js
CHANGED
|
@@ -385,11 +385,12 @@ export class RbirdFormManager {
|
|
|
385
385
|
background-color: ${theme.backgroundColor || '#ffffff'} !important;
|
|
386
386
|
font-family: ${theme.fontFamily || "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif"} !important;
|
|
387
387
|
border-radius: ${theme.borderRadius || '12px'} !important;
|
|
388
|
-
padding:
|
|
388
|
+
padding: 32px !important;
|
|
389
389
|
min-width: min(400px, calc(100vw - 40px)) !important;
|
|
390
|
-
${isModal ? 'max-width: 500px !important; width: 100% !important; max-height: 90vh !important; overflow-y: auto !important;' : 'width: 100% !important;'}
|
|
390
|
+
${isModal ? 'max-width: 500px !important; width: 100% !important; max-height: 90vh !important; overflow-y: auto !important; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;' : 'width: 100% !important;'}
|
|
391
391
|
box-sizing: border-box !important;
|
|
392
392
|
margin: 0 !important;
|
|
393
|
+
border: none !important;
|
|
393
394
|
`;
|
|
394
395
|
}
|
|
395
396
|
|
|
@@ -551,6 +552,9 @@ export class RbirdFormManager {
|
|
|
551
552
|
.rbird-form-content {
|
|
552
553
|
position: relative !important;
|
|
553
554
|
box-sizing: border-box !important;
|
|
555
|
+
padding: 32px !important;
|
|
556
|
+
background-color: #ffffff !important;
|
|
557
|
+
border-radius: 12px !important;
|
|
554
558
|
}
|
|
555
559
|
|
|
556
560
|
.rbird-form-body {
|
|
@@ -558,6 +562,16 @@ export class RbirdFormManager {
|
|
|
558
562
|
margin: 0 !important;
|
|
559
563
|
}
|
|
560
564
|
|
|
565
|
+
.rbird-form-title {
|
|
566
|
+
margin: 0 0 8px 0 !important;
|
|
567
|
+
padding: 0 !important;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.rbird-form-description {
|
|
571
|
+
margin: 0 0 20px 0 !important;
|
|
572
|
+
padding: 0 !important;
|
|
573
|
+
}
|
|
574
|
+
|
|
561
575
|
.rbird-form-close:hover {
|
|
562
576
|
opacity: 1 !important;
|
|
563
577
|
}
|