@fullsession.io/fs-feedback-widget 1.5.4 → 1.5.6
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/App.svelte +2 -1
- package/src/widgetPages/App.css +1 -1
- package/src/widgetPages/reactionpage.css +8 -3
package/package.json
CHANGED
package/src/App.svelte
CHANGED
package/src/widgetPages/App.css
CHANGED
|
@@ -2,14 +2,15 @@
|
|
|
2
2
|
pointer-events: auto;
|
|
3
3
|
display: flex;
|
|
4
4
|
flex-direction: column;
|
|
5
|
-
height:
|
|
5
|
+
height: fit-content;
|
|
6
6
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
7
7
|
}
|
|
8
8
|
.fsIcons {
|
|
9
9
|
display: flex;
|
|
10
10
|
flex-direction: row;
|
|
11
11
|
justify-content: space-evenly;
|
|
12
|
-
margin-top:
|
|
12
|
+
margin-top: 5%;
|
|
13
|
+
padding: 5%;
|
|
13
14
|
}
|
|
14
15
|
#fsTxt {
|
|
15
16
|
font-size: 17px;
|
|
@@ -75,6 +76,10 @@
|
|
|
75
76
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
76
77
|
|
|
77
78
|
}
|
|
79
|
+
|
|
80
|
+
.fsTextarea:focus {
|
|
81
|
+
outline: none !important;
|
|
82
|
+
}
|
|
78
83
|
.fsSendButtonCommentComponent{
|
|
79
84
|
pointer-events: auto;
|
|
80
85
|
color: #ffff;
|
|
@@ -169,7 +174,7 @@
|
|
|
169
174
|
pointer-events: auto;
|
|
170
175
|
display: flex;
|
|
171
176
|
flex-direction: column;
|
|
172
|
-
height:
|
|
177
|
+
height: fit-content;
|
|
173
178
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
174
179
|
|
|
175
180
|
}
|