optimized-react-component-library-xyz123 0.37.2 → 0.37.3
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 +1 -1
- package/src/css/questions.css +5 -1
- package/src/css/styles.css +0 -2
package/package.json
CHANGED
package/src/css/questions.css
CHANGED
|
@@ -320,14 +320,18 @@ div.pts-root-question:last-child {
|
|
|
320
320
|
|
|
321
321
|
.pts-textarea-counter-error-container {
|
|
322
322
|
display: flex;
|
|
323
|
-
justify-content: space-between;
|
|
324
323
|
}
|
|
325
324
|
|
|
326
325
|
.pts-character-counter {
|
|
327
326
|
text-align: right;
|
|
327
|
+
width: 100%;
|
|
328
328
|
margin-top: 0.4rem;
|
|
329
329
|
}
|
|
330
330
|
|
|
331
|
+
.pts-textarea-counter-error-container .pts-root-error {
|
|
332
|
+
width: 100%;
|
|
333
|
+
}
|
|
334
|
+
|
|
331
335
|
.pts-root-question-group-fieldset .pts-root-error {
|
|
332
336
|
margin-bottom: 1.6rem;
|
|
333
337
|
}
|
package/src/css/styles.css
CHANGED