Skip to content

Commit

Permalink
enhance(backend): 🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 4, 2023
1 parent 331a0e6 commit a4a4118
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- 알림 채널을 선택할 수 있음
- 다음 릴리즈 출시까지 알리지 않도록 설정할 수 있음
- Enhance: 그룹 대화에서 읽음 표시를 개선
- Enhance: cli, bios 페이지 개선
- Fix: 서브 노트 기능 오류
- 서브 노트에서 더 보기 버튼을 사용할 수 없음
- 리액션 변경 기능을 사용할 수 없음
Expand Down
11 changes: 8 additions & 3 deletions packages/backend/src/server/web/bios.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,20 @@
}

html {
background: #ffb4e1;
background: #202020;
}

header {
color: #fff;
}

main {
background: #dedede;
background: #262626;
color: #fff;
}
main > .tabs {
padding: 16px;
border-bottom: solid 4px #c3c3c3;
border-bottom: solid 4px #fff;
}

#lsEditor > .adder {
Expand Down
11 changes: 8 additions & 3 deletions packages/backend/src/server/web/cli.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,21 @@
}

html {
background: #ffb4e1;
background: #202020;
}

header {
color: #fff;
}

main {
background: #dedede;
background: #262626;
color: #fff;
}

#tl > div {
padding: 16px;
border-bottom: solid 1px #c3c3c3;
border-bottom: solid 1px #3e3e3e;
}
#tl > div > header {
font-weight: bold;
Expand Down

0 comments on commit a4a4118

Please sign in to comment.