mirror of
https://github.com/kbenestad/reimburse.git
synced 2026-06-18 16:04:31 +00:00
Use blue squircle app icon in doctitle wordmark
Replace stroke-only glyph with the full reimburse icon (blue squircle + white glyph). Sized to 1em so it scales with the h1 font size. https://claude.ai/code/session_01JyuActqTJG5tuRQNLmT7fZ
This commit is contained in:
parent
076996a470
commit
364cac2155
1 changed files with 2 additions and 2 deletions
|
|
@ -338,7 +338,7 @@ body{
|
||||||
font:700 var(--fs-h1)/1 var(--font-sans);
|
font:700 var(--fs-h1)/1 var(--font-sans);
|
||||||
color:var(--text);letter-spacing:-0.01em;user-select:none;
|
color:var(--text);letter-spacing:-0.01em;user-select:none;
|
||||||
}
|
}
|
||||||
.app-wordmark svg{width:22px;height:22px;flex:0 0 22px;opacity:.55;}
|
.app-wordmark svg{width:1em;height:1em;flex:0 0 1em;vertical-align:middle;}
|
||||||
/* Language select in toolbar */
|
/* Language select in toolbar */
|
||||||
.kb-toolbar-sel{
|
.kb-toolbar-sel{
|
||||||
font:600 var(--fs-small)/1 var(--font-sans);color:var(--text-muted);
|
font:600 var(--fs-small)/1 var(--font-sans);color:var(--text-muted);
|
||||||
|
|
@ -780,7 +780,7 @@ function render() {
|
||||||
|
|
||||||
const docTitle = el('div', {className:'kb-doctitle'});
|
const docTitle = el('div', {className:'kb-doctitle'});
|
||||||
const wordmark = el('div', {className:'app-wordmark'});
|
const wordmark = el('div', {className:'app-wordmark'});
|
||||||
wordmark.innerHTML = `reimburse<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"><rect x="7.5" y="14" width="33" height="20" rx="3.2" stroke-width="2.8"/><circle cx="24" cy="24" r="4.6" stroke-width="2.6"/><path d="M12.7 21.4V26.6M35.3 21.4V26.6" stroke-width="2.6"/></svg>`;
|
wordmark.innerHTML = `reimburse<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><rect width="48" height="48" rx="12" fill="#2f6fed"/><rect x="7.5" y="14" width="33" height="20" rx="3.2" fill="none" stroke="#fff" stroke-width="2.8"/><circle cx="24" cy="24" r="4.6" fill="none" stroke="#fff" stroke-width="2.6"/><path d="M12.7 21.4V26.6M35.3 21.4V26.6" stroke="#fff" stroke-width="2.6" stroke-linecap="round"/></svg>`;
|
||||||
const periodMeta = el('div', {className:'meta'});
|
const periodMeta = el('div', {className:'meta'});
|
||||||
function updatePeriodMeta() {
|
function updatePeriodMeta() {
|
||||||
const from = state.periodFrom, to = state.periodTo;
|
const from = state.periodFrom, to = state.periodTo;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue