fix(dashboard,work): force left-align + overflow-wrap on notification feeds

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
zio 2026-07-24 07:07:56 +09:00
parent be82475af8
commit e0f4554497
2 changed files with 4 additions and 0 deletions

View File

@ -317,6 +317,8 @@
} }
.kx-feed__text { .kx-feed__text {
min-width: 0; min-width: 0;
text-align: left; /* 알림은 항상 왼쪽 정렬 — 상위 중앙정렬 상속 차단(소유자 지시 2026-07-24) */
overflow-wrap: anywhere; /* 긴 무공백 문자열도 컨테이너 안에서 줄바꿈(한 줄로 길게 밀림 방지) */
color: var(--color-neutral-700); color: var(--color-neutral-700);
word-break: keep-all; word-break: keep-all;
overflow-wrap: anywhere; overflow-wrap: anywhere;

View File

@ -729,6 +729,8 @@
.kx-noti__body { .kx-noti__body {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
text-align: left; /* 알림은 항상 왼쪽 정렬(소유자 지시 2026-07-24) */
overflow-wrap: anywhere;
} }
.kx-noti__title { .kx-noti__title {
font-weight: var(--fw-semibold); font-weight: var(--fw-semibold);