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

Chat palette fixings in dark mode #2720

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
join project form dark mode colors fix
  • Loading branch information
elatif2020 committed Aug 6, 2024
commit 2e77e09bf3592573c36df721ab4fae83273b53e1
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
}

.field {
border: 0.0625rem $light-gray-3 solid;
border: 0.0625rem var(--gentle-stroke) solid;

&::placeholder {
font-size: $xsmall;
@@ -22,10 +22,12 @@
width: 100%;
border-width: 0;
outline: 0;
border: 0.0625rem $light-gray-3 solid;
border: 0.0625rem var(--gentle-stroke) solid;
height: 100%;
min-height: 6.4375rem;
padding: 0.75rem;
background-color: var(--secondary-background);
color: var(--primary-text);

@include tablet {
max-height: 4.25rem;
Loading