Onboarding dark mode fixees (#18996)

This commit is contained in:
Rajat Talesra 2023-01-25 10:53:59 +05:30 committed by GitHub
parent 99133a6e56
commit 7c6f269b14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 2 deletions

View file

@ -166,6 +166,9 @@
/* Code */
--code-inline-bg: rgb(var(--black), 0.1);
/* Onboarding suggested people */
--content-row-hover-bg: rgb(var(--grey-100));
}
:root {

View file

@ -335,6 +335,7 @@
}
.introduction-title {
color: var(--base-inverted);
font-size: var(--fs-2xl);
font-weight: var(--fw-heavy);
line-height: var(--lh-tight);
@ -346,6 +347,7 @@
}
.introduction-subtitle {
color: var(--base-inverted);
font-size: var(--fs-l);
font-weight: var(--fw-normal);
line-height: var(--lh-base);
@ -458,6 +460,7 @@ $onboarding-user-selected-hover: rgba(71, 85, 235, 0.2);
.user-name,
.user-summary {
color: var(--base);
margin: 0;
line-height: var(--lh-tight);
@ -549,7 +552,7 @@ $onboarding-user-selected-hover: rgba(71, 85, 235, 0.2);
&:hover,
&:focus-within {
background-color: #eef0f1 !important;
background-color: var(--content-row-hover-bg) !important;
}
}

View file

@ -172,6 +172,9 @@
/* Code */
--code-inline-bg: rgb(var(--white), 0.1);
/* Onboarding suggested people */
--content-row-hover-bg: rgba(var(--base-20));
}
:root {

View file

@ -140,7 +140,7 @@ export class FollowTags extends Component {
style={{
boxShadow: selected
? `inset 0 0 0 100px ${tag.bg_color_hex}`
: `inset 0 0 0 2px ${tag.bg_color_hex}`,
: `inset 0 0 0 0px ${tag.bg_color_hex}`,
color: selected ? tag.text_color_hex : '',
}}
key={tag.id}