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

feat: curioweb: add favicon #11804

Merged
merged 1 commit into from
Apr 2, 2024
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 curiosrc/web/hapi/web/root.gohtml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<script type="module" src="chain-connectivity.js"></script>
<link rel="stylesheet" href="/main.css">
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/hack-font@3.3.0/build/web/hack-subset.css'>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
</head>
<body>
<div class="app-head">
Expand Down
1 change: 1 addition & 0 deletions curiosrc/web/static/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions curiosrc/web/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,16 @@
.deadline-faulty {
background-color: red;
}
.logo {
display: inline-block;
}
</style>
</head>
<body>
<div class="app-head">
<div class="logo">
<img src="favicon.svg" alt="Curio Logo" style="height: 64px; margin: 8px;">
</div>
<div class="head-left">
<h1>Curio Cluster</h1>
</div>
Expand Down
Loading