Skip to content

Commit

Permalink
Separate small and big logo
Browse files Browse the repository at this point in the history
  • Loading branch information
karlosos committed Nov 22, 2023
1 parent e3773b5 commit aaa21be
Show file tree
Hide file tree
Showing 10 changed files with 1,460 additions and 2 deletions.
Binary file added public/favicon-24px.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 added public/favicon-280px.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.
1,254 changes: 1,254 additions & 0 deletions public/favicon.svg
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/logo-original.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
198 changes: 198 additions & 0 deletions public/logo-original.svg
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/logo192.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/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/layout/header/Header.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react';

import { HeaderWrapper, Title } from './Header.style';
import { HeaderWrapper, Logo, Title } from './Header.style';

const Header = () => {
return (
<HeaderWrapper>
<p style={{ fontSize: '18px' }}>📚</p>
<Logo><img src='./favicon.svg' width='24px' alt='logo'/></Logo>
<Title>Kindle Clippings Manager</Title>
{/* <SearchBar icon='search' placeholder='Search...' value="" onChange={() => undefined}/> */}
</HeaderWrapper>
Expand Down
6 changes: 6 additions & 0 deletions src/app/layout/header/Header.style.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ export const Title = styled('h1')`
}
`;

export const Logo = styled.div`
display: flex;
align-items: center;
justify-content: center;
`

export const SearchBar = styled(Input)`
justify-self: flex-end;
`;

0 comments on commit aaa21be

Please sign in to comment.