Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: fix VCard color in dark theme #4255

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- image thumbnails not showing in chat list #4247
- progress bar not working #4248
- avoid showing horizontal scrollbars in chat list #4253
- style: fix VCard color being too bright in dark theme #4255

<a id="1_47_0"></a>

Expand Down
3 changes: 2 additions & 1 deletion packages/frontend/src/components/message/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@

.vcard {
display: flex;
background-color: #dedede;
// TODO should probably lighten instead of darkening if the theme is dark.
background-color: #0002;
border-radius: 10px;
padding: 9px;
padding-top: 0;
Expand Down
Loading