Skip to content

Commit

Permalink
fix(ui): change attachment text color to dark (#1751)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flemmli97 authored Jan 24, 2024
1 parent acba889 commit c298022
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion kit/src/components/embeds/file_embed/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ pub fn FileEmbed<'a>(cx: Scope<'a, Props<'a>>) -> Element<'a> {
p {
class: "name",
aria_label: "file-name",
color: "var(--text-color)",
"{filename}"
},
p {
Expand Down
3 changes: 2 additions & 1 deletion kit/src/components/embeds/file_embed/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
display: inline-flex;
gap: var(--gap);
width: 100%;
color: var(--text-color);
color: var(--text-color-dark);
align-content: center;
align-self: flex-end;

Expand Down Expand Up @@ -110,6 +110,7 @@
.meta {
color: var(--placeholder);
}
color: var(--text-color);
align-self: flex-start;
}

Expand Down

0 comments on commit c298022

Please sign in to comment.