Thanks to visit codestin.com
Credit goes to github.com

Skip to content

site: new dark theme #10331

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

Merged
merged 15 commits into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
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
Next Next commit
🍒
  • Loading branch information
aslilac committed Nov 13, 2023
commit e49d40b5dcfe86611a829ce6d9f384a9889ce46a
2 changes: 1 addition & 1 deletion site/src/components/BuildAvatar/BuildAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export const BuildAvatar: FC<BuildAvatarProps> = ({ build, size }) => {
}}
badgeContent={<div></div>}
>
<Avatar size={size} colorScheme="darken">
<Avatar size={size}>
<BuildIcon transition={build.transition} />
</Avatar>
</StyledBadge>
Expand Down
2 changes: 1 addition & 1 deletion site/src/components/Resources/ResourceAvatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const ResourceAvatar: FC<ResourceAvatarProps> = ({ resource }) => {
: getIconPathResource(resource.type);

return (
<Avatar colorScheme="darken">
<Avatar>
<AvatarIcon src={avatarSrc} alt={resource.name} />
</Avatar>
);
Expand Down
6 changes: 1 addition & 5 deletions site/src/pages/ExternalAuthPage/ExternalAuthPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,7 @@ const ExternalAuthPageView: FC<ExternalAuthPageViewProps> = ({
target="_blank"
rel="noreferrer"
>
<Avatar
size="sm"
src={install.account.avatar_url}
colorScheme="darken"
>
<Avatar size="sm" src={install.account.avatar_url}>
{install.account.login}
</Avatar>
</Link>
Expand Down