Skip to content

Commit

Permalink
ease drawer in and out
Browse files Browse the repository at this point in the history
  • Loading branch information
seigler committed Apr 16, 2024
1 parent be41bda commit 8c37113
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Drawer({ children }: DrawerProps) {
}}
class="drawer-handle"
>
{isOpen.value ? "Reference 🞃" : "Reference 🞁"}
{isOpen.value ? "Close Reference" : "Open Reference"}
</button>
{children}
</div>
Expand Down
1 change: 1 addition & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ footer {
left: 0;
right: 0;
transform: translateY(100%);
transition: transform ease 0.2s;
display: flex;
flex-direction: column;
align-items: stretch;
Expand Down

0 comments on commit 8c37113

Please sign in to comment.