@product7/feedback-sdk 1.7.4 → 1.7.5
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
package/src/styles/survey.js
CHANGED
|
@@ -533,7 +533,9 @@ export const surveyStyles = `
|
|
|
533
533
|
SUBMIT & FEEDBACK
|
|
534
534
|
======================================== */
|
|
535
535
|
|
|
536
|
-
.feedback-survey-submit
|
|
536
|
+
.feedback-survey-submit,
|
|
537
|
+
.feedback-survey-link-btn {
|
|
538
|
+
display: block;
|
|
537
539
|
width: 100%;
|
|
538
540
|
padding: var(--spacing-3);
|
|
539
541
|
background: var(--color-primary);
|
|
@@ -544,12 +546,17 @@ export const surveyStyles = `
|
|
|
544
546
|
font-weight: var(--font-weight-medium);
|
|
545
547
|
cursor: pointer;
|
|
546
548
|
font-family: inherit;
|
|
549
|
+
text-align: center;
|
|
550
|
+
text-decoration: none;
|
|
547
551
|
transition: all var(--transition-base);
|
|
548
552
|
}
|
|
549
553
|
|
|
550
|
-
.feedback-survey-submit:hover
|
|
554
|
+
.feedback-survey-submit:hover,
|
|
555
|
+
.feedback-survey-link-btn:hover {
|
|
551
556
|
background: var(--color-primary-hover);
|
|
552
557
|
border-color: var(--color-primary-hover);
|
|
558
|
+
color: var(--color-white);
|
|
559
|
+
text-decoration: none;
|
|
553
560
|
}
|
|
554
561
|
|
|
555
562
|
.feedback-survey-error {
|