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

Update logo and favicon #143

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ COPY . .
# Build the project
RUN npm run build examples
RUN cp -r ./examples/assets/sandbox_icon.png ./examples/dist/assets/sandbox_icon.png
RUN cp -r ./examples/assets/favicon.png ./examples/dist/assets/favicon.png

FROM nginx:alpine as production-build

Expand Down
Binary file added examples/assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion examples/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/assets/radix-icon_128x128.png"
href="/assets/favicon.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Radix dApp Sandbox</title>
Expand Down
4 changes: 2 additions & 2 deletions examples/layouts/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ export const Header = ({
>
<MenuIcon />
</IconButton>
<a href="/">
<a href="/" style={{ display: 'flex' }}>
<img
src={radixLogo}
className="logo"
style={{ maxHeight: '50px' }}
style={{ maxHeight: '25px' }}
alt="Radix logo"
/>
</a>
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"@mui/joy": "^5.0.0-alpha.76",
"@mui/material": "^5.12.1",
"@radixdlt/radix-engine-toolkit": "1.0.0",
"@radixdlt/dapps-dropdown": "^0.2.0",
"@radixdlt/dapps-dropdown": "1.0.1",
"@radixdlt/rola": "1.0.0",
"@types/elliptic": "^6.4.14",
"@types/jest": "^29.4.0",
Expand Down
Loading