hide nav on mobile

This commit is contained in:
Paul Miller
2023-04-22 16:39:31 -05:00
parent a9e43fde7e
commit 6460547d53
11 changed files with 41 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
<svg width="36" height="36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.546 8 8 17.546l9.546 9.546" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 206 B

View File

@@ -0,0 +1,3 @@
<svg width="36" height="36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.75 27.75v-13.5a1.5 1.5 0 0 1 3 0v9.879L26.281 7.597a1.5 1.5 0 0 1 2.122 2.122L11.87 26.25h9.879a1.5 1.5 0 0 1 0 3H8.25a1.5 1.5 0 0 1-1.5-1.5Z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 294 B

6
src/assets/svg/Back.tsx Normal file
View File

@@ -0,0 +1,6 @@
export function Back() {
return (<svg width="36" height="36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.546 8 8 17.546l9.546 9.546" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
</svg>
)
}