diff --git a/frontend/src/app/shared/components/truncate/truncate.component.html b/frontend/src/app/shared/components/truncate/truncate.component.html index 335c35212..4d42ab91c 100644 --- a/frontend/src/app/shared/components/truncate/truncate.component.html +++ b/frontend/src/app/shared/components/truncate/truncate.component.html @@ -1,5 +1,4 @@ -
{{ text }}
@@ -12,10 +11,11 @@
- {{text.slice(0,-lastChars)}}{{text.slice(-lastChars)}} +
{{ text }}
{{text.slice(lastChars)}}{{text.slice(0,lastChars)}} +
{{ text }}
\ No newline at end of file diff --git a/frontend/src/app/shared/components/truncate/truncate.component.scss b/frontend/src/app/shared/components/truncate/truncate.component.scss index 7f79eb043..6f106a934 100644 --- a/frontend/src/app/shared/components/truncate/truncate.component.scss +++ b/frontend/src/app/shared/components/truncate/truncate.component.scss @@ -39,6 +39,6 @@ @media (max-width: 567px) { .hidden-content { - max-width: 150px; + max-width: 150px !important; } }