Skip to content

Commit

Permalink
長い単語が途中改行されるようにした
Browse files Browse the repository at this point in the history
  • Loading branch information
ZOI-dayo committed Nov 19, 2024
1 parent e8851fc commit c314d7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Controls/Textbox/EmailTextbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const value = defineModel<string>()
/>
<div v-if="errorMessage != ''" class="flex items-start gap-2 pl-1 text-status-error">
<MaterialIcon icon="error" size="1.25rem" />
<span class="fontstyle-ui-control">{{ errorMessage }}</span>
<span class="fontstyle-ui-control min-w-0 break-words">{{ errorMessage }}</span>
</div>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Controls/Textbox/PasswordTextbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const passwordShown = ref<boolean>(false)
</span>
<div v-if="errorMessage != ''" class="flex items-start gap-2 pl-1 text-status-error">
<MaterialIcon icon="error" size="1.25rem" />
<span class="fontstyle-ui-control">{{ errorMessage }}</span>
<span class="fontstyle-ui-control min-w-0 break-words">{{ errorMessage }}</span>
</div>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Controls/Textbox/PlainTextbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const value = defineModel<string>()
/>
<div v-if="errorMessage != ''" class="flex items-start gap-2 pl-1 text-status-error">
<MaterialIcon icon="error" size="1.25rem" />
<span class="fontstyle-ui-control">{{ errorMessage }}</span>
<span class="fontstyle-ui-control min-w-0 break-words">{{ errorMessage }}</span>
</div>
</div>
</template>
Expand Down

0 comments on commit c314d7a

Please sign in to comment.