fix: adjust sizing of sidebar SVG to match Excalidraw UI

This commit is contained in:
ruinivist
2026-05-30 21:47:26 +00:00
parent e576ca7d2d
commit 93608bda1e
2 changed files with 6 additions and 7 deletions
+4 -4
View File
@@ -80,10 +80,10 @@ async function requestJson<T>(url: string, init?: RequestInit): Promise<T> {
function DrawerIcon() {
return (
<svg viewBox="0 0 24 24" aria-hidden="true">
<rect x="3.5" y="5" width="17" height="14" rx="2.5" fill="none" stroke="currentColor" strokeWidth="1.8" />
<path d="M9 5v14" fill="none" stroke="currentColor" strokeWidth="1.8" strokeLinecap="round" />
<path d="M5.75 9h1.5M5.75 12h1.5M5.75 15h1.5" fill="none" stroke="currentColor" strokeWidth="1.8" strokeLinecap="round" />
<svg viewBox="0 0 24 24" aria-hidden="true" width="20" height="20">
<rect x="3.5" y="5" width="17" height="14" rx="2.5" fill="none" stroke="currentColor" strokeWidth="2" />
<path d="M9 5v14" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
<path d="M5.75 9h1.5M5.75 12h1.5M5.75 15h1.5" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
</svg>
);
}
+2 -3
View File
@@ -182,9 +182,8 @@ input {
}
.app-actions-toggle svg {
width: 1.125rem;
height: 1.125rem;
overflow: visible;
width: 20px;
height: 20px;
}
.primary-button,