Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Fix long overflowing text in toasts, for example when using a long email address #596

Merged
merged 1 commit into from
Jan 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/ChecToast.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ export default {
}

&__text {
@apply text-primary-blue text-left text-sm break-words max-w-full my-auto;
@apply text-primary-blue text-left text-sm max-w-full my-auto;
overflow-wrap: anywhere;

.button {
@apply mt-3 -ml-1;
Expand Down