diff --git a/app/assets/javascripts/components/NoteTags.tsx b/app/assets/javascripts/components/NoteTags.tsx index 2db2bd1ae..6327eea30 100644 --- a/app/assets/javascripts/components/NoteTags.tsx +++ b/app/assets/javascripts/components/NoteTags.tsx @@ -35,7 +35,9 @@ const NoteTags = observer(({ application, appState }: Props) => { }} > - {tag.title} + + {tag.title} + ))} diff --git a/app/assets/stylesheets/_sn.scss b/app/assets/stylesheets/_sn.scss index f7ec94559..c95842c85 100644 --- a/app/assets/stylesheets/_sn.scss +++ b/app/assets/stylesheets/_sn.scss @@ -204,6 +204,14 @@ overflow: auto; } +.overflow-hidden { + overflow: hidden; +} + +.overflow-ellipsis { + text-overflow: ellipsis; +} + .items-start { align-items: flex-start; } @@ -220,6 +228,10 @@ white-space: pre-wrap; } +.whitespace-nowrap { + white-space: nowrap; +} + /** * A button that is just an icon. Separated from .sn-button because there * is almost no style overlap.