Skip to content

Commit

Permalink
💎 style(logo): use dashpress logos
Browse files Browse the repository at this point in the history
  • Loading branch information
thrownullexception committed Oct 6, 2023
1 parent a154264 commit ffbfcd2
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">
<a href="https://github.com/dashpresshq/dashpress">
<img src="https://dashpress.io/assets/images/logo.png" alt="Logo" height="100">
<img src="https://dashpress.io/assets/logos/full-logo-white.png" alt="Logo" height="100">
</a>
</h1>

Expand Down
Binary file modified public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/images/full-logo-white.png
Binary file not shown.
Binary file modified public/assets/images/full-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/assets/images/logo-white.png
Binary file not shown.
Binary file modified public/assets/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
6 changes: 3 additions & 3 deletions src/frontend/_layouts/app/LayoutImpl/SideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ import { RenderNavigation } from "./RenderNavigation";

const StyledLogoSm = styled.img`
width: 28px;
margin-top: 16px;
`;

const StyledLogoFull = styled.img`
margin-top: 16px;
width: 120px;
`;

const StyledBrand = styled.div`
text-align: center;
display: flex;
align-items: center;
justify-content: center;
height: 70px;
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,12 @@ interface IProps {
homeLink?: string;
}

export function GuestHeader({
title,
subTitle,
logo = "/assets/images/logo.png",
homeLink = "/",
}: IProps) {
export function GuestHeader({ title, subTitle, logo, homeLink = "/" }: IProps) {
return (
<Root>
<a href={homeLink}>
<img src={logo} height="50" alt="logo" />
<Spacer />
{logo && <img src={logo} height="40" alt="logo" />}
<Spacer />
<Typo.MD color="inverse">{title}</Typo.MD>
<Spacer size="xs" />
Expand Down

0 comments on commit ffbfcd2

Please sign in to comment.