Skip to content
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
23 changes: 5 additions & 18 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,24 +135,11 @@ a {
}

.brand-mark {
border: 1px solid var(--ink);
display: grid;
flex: 0 0 38px;
font: 700 10px/1 var(--font-geist-mono), monospace;
grid-template-columns: 1fr 1fr;
height: 38px;
letter-spacing: -0.06em;
}

.brand-mark span {
align-items: center;
display: flex;
justify-content: center;
}

.brand-mark span:first-child {
background: var(--ink);
color: var(--paper);
display: block;
flex: 0 0 52px;
height: 52px;
width: 52px;
object-fit: contain;
}

.brand-name,
Expand Down
5 changes: 1 addition & 4 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,7 @@ function fileNavigationStep(event: KeyboardEvent) {
function BrandBlock() {
return (
<div className="brand-block">
<div className="brand-mark" aria-hidden="true">
<span>D</span>
<span>S</span>
</div>
<img className="brand-mark" src="./logo-256.png" width="52" height="52" alt="" />
<div>
<p className="brand-name">Diffsplain</p>
<p className="brand-tag">Agent-made change notes</p>
Expand Down
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
content="Clear code diffs with concise notes from your coding agent."
/>
<meta name="theme-color" content="#e9e2d5" />
<link rel="icon" href="./favicon.svg" type="image/svg+xml" />
<link rel="icon" href="./favicon-32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="./favicon-16.png" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" sizes="180x180" />
Comment thread
itsjling marked this conversation as resolved.
<title>Diffsplain</title>
</head>
<body>
Expand Down
Binary file added 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 added public/favicon-16.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-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 0 additions & 6 deletions public/favicon.svg

This file was deleted.

Binary file added public/logo-256.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/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 added site/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 added site/favicon-16.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 site/favicon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
content="Diffsplain is an open-source developer tool for reviewing GitHub pull requests one file at a time."
/>
<meta name="theme-color" content="#e9e2d5" />
<link rel="icon" href="./favicon-32.png" type="image/png" sizes="32x32" />
<link rel="icon" href="./favicon-16.png" type="image/png" sizes="16x16" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" sizes="180x180" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Diffsplain" />
<meta
Expand Down Expand Up @@ -100,9 +103,7 @@

<header class="masthead">
<a class="wordmark" href="#top" aria-label="Diffsplain home">
<span class="wordmark__mark" aria-hidden="true">
<span>D</span><span>S</span>
</span>
<img class="wordmark__mark" src="./logo-256.png" width="48" height="48" alt="" />
<span class="wordmark__text">Diffsplain</span>
</a>

Expand Down
Binary file added site/logo-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 4 additions & 18 deletions site/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,24 +115,10 @@ code {
}

.wordmark__mark {
border: 1px solid var(--ink);
display: grid;
font: 650 10px/1 "Geist Mono", monospace;
grid-template-columns: 1fr 1fr;
height: 34px;
letter-spacing: -0.04em;
width: 34px;
}

.wordmark__mark span {
align-items: center;
display: flex;
justify-content: center;
}

.wordmark__mark span:first-child {
background: var(--ink);
color: var(--paper);
display: block;
height: 48px;
width: 48px;
object-fit: contain;
}

.wordmark__text {
Expand Down
Loading