@14ch/svelte-ui 0.0.47 → 0.0.48
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.
|
@@ -704,6 +704,8 @@
|
|
|
704
704
|
overflow-y: auto;
|
|
705
705
|
overflow-x: hidden;
|
|
706
706
|
max-height: 100%;
|
|
707
|
+
/* textarea の UA デフォルト(overflow-wrap: break-word)に合わせ、長い連続文字列の折り返し位置を一致させる */
|
|
708
|
+
overflow-wrap: break-word;
|
|
707
709
|
|
|
708
710
|
&::before {
|
|
709
711
|
content: '';
|
|
@@ -884,6 +886,7 @@
|
|
|
884
886
|
padding-top: inherit;
|
|
885
887
|
padding-bottom: inherit;
|
|
886
888
|
padding-left: inherit;
|
|
889
|
+
padding-right: inherit;
|
|
887
890
|
}
|
|
888
891
|
|
|
889
892
|
.textarea__wrapper,
|