From c62ca4b1830732a743de47ac5eed820f89f99d92 Mon Sep 17 00:00:00 2001 From: Alex Inkin Date: Sun, 21 Sep 2025 19:06:33 +0700 Subject: [PATCH] fix: make long dropdown options wrap (#3031) --- web/projects/shared/styles/taiga.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/web/projects/shared/styles/taiga.scss b/web/projects/shared/styles/taiga.scss index a89eeb2e6..049797d94 100644 --- a/web/projects/shared/styles/taiga.scss +++ b/web/projects/shared/styles/taiga.scss @@ -168,3 +168,8 @@ tui-textfield [tuiTooltip] { align-self: center !important; } } + +// TODO: Remove after migrating to v5 +[tuiOption] { + word-break: break-word; +}