From dfce5fe748aebc8e7866fd9cb49966118257acac Mon Sep 17 00:00:00 2001 From: Nikola Lukovic Date: Thu, 19 Oct 2023 16:46:40 +0200 Subject: [PATCH] Lowered max-width for note header usernames to 100px to avoid overflow --- src/components/Note/NoteHeader/NoteHeader.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Note/NoteHeader/NoteHeader.module.scss b/src/components/Note/NoteHeader/NoteHeader.module.scss index 052bff7..c615aa0 100644 --- a/src/components/Note/NoteHeader/NoteHeader.module.scss +++ b/src/components/Note/NoteHeader/NoteHeader.module.scss @@ -53,7 +53,7 @@ text-overflow: ellipsis; white-space: nowrap; overflow: hidden; - max-width: 360px; + max-width: 100px; color: var(--text-primary); margin-right: 2px; }