fix(frontend): 일부 환경에서 특정 영역에 스크롤 바가 표시될 수 있음

This commit is contained in:
NoriDev 2023-12-23 00:49:11 +09:00
parent 91af424575
commit 88bf3e58e8
4 changed files with 6 additions and 5 deletions

View file

@ -74,6 +74,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- Fix: 내 프로필에서 간헐적으로 헤더에 MkFollowButton 컴포넌트가 표시될 수 있음 - Fix: 내 프로필에서 간헐적으로 헤더에 MkFollowButton 컴포넌트가 표시될 수 있음
- Fix: 다이렉트 노트를 리노트 할 수 있음 - Fix: 다이렉트 노트를 리노트 할 수 있음
- Fix: 이모지를 변경할 때 이모지가 ❤️로 고정될 수 있음 - Fix: 이모지를 변경할 때 이모지가 ❤️로 고정될 수 있음
- Fix: 일부 환경에서 특정 영역에 스크롤 바가 표시될 수 있음
### Server ### Server
- Enhance: (dev) 개발 모드에서 locale 및 유형 정의가 자동으로 재생성됨 (misskey-dev/misskey#12481) - Enhance: (dev) 개발 모드에서 locale 및 유형 정의가 자동으로 재생성됨 (misskey-dev/misskey#12481)

View file

@ -77,7 +77,7 @@ $height: 2ex;
font-size: 0.9em; font-size: 0.9em;
font-weight: bold; font-weight: bold;
white-space: nowrap; white-space: nowrap;
overflow: scroll; overflow: hidden;
overflow-wrap: anywhere; overflow-wrap: anywhere;
max-width: 300px; max-width: 300px;
text-overflow: ellipsis; text-overflow: ellipsis;

View file

@ -805,7 +805,7 @@ onMounted(() => {
font-weight: bold; font-weight: bold;
line-height: 1.3; line-height: 1.3;
margin: 0 .5em 0 0; margin: 0 .5em 0 0;
overflow: scroll; overflow: hidden;
overflow-wrap: anywhere; overflow-wrap: anywhere;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
@ -839,7 +839,7 @@ onMounted(() => {
margin-bottom: 2px; margin-bottom: 2px;
line-height: 1.3; line-height: 1.3;
word-wrap: anywhere; word-wrap: anywhere;
overflow: scroll; overflow: hidden;
overflow-wrap: anywhere; overflow-wrap: anywhere;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;

View file

@ -99,7 +99,7 @@ function showOnRemote() {
display: block; display: block;
margin: 0 .5em 0 0; margin: 0 .5em 0 0;
padding: 0; padding: 0;
overflow: scroll; overflow: hidden;
overflow-wrap: anywhere; overflow-wrap: anywhere;
font-size: 1em; font-size: 1em;
font-weight: bold; font-weight: bold;
@ -130,7 +130,7 @@ function showOnRemote() {
.username { .username {
flex-shrink: 9999999; flex-shrink: 9999999;
margin: 0 .5em 0 0; margin: 0 .5em 0 0;
overflow: scroll; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: .95em; font-size: .95em;
max-width: 300px; max-width: 300px;