Add bugfix

This commit is contained in:
William Tran 2021-06-28 17:16:49 -04:00
parent 65a178417f
commit 595ccd6568
3 changed files with 7 additions and 6 deletions

View File

@ -129,6 +129,10 @@
transition: bottom 0.6s; transition: bottom 0.6s;
} }
.hiddenBurger {
bottom: -50px;
}
.burger:focus { .burger:focus {
outline: none; outline: none;
} }
@ -212,6 +216,3 @@
} }
.hiddenBurger {
bottom: -50px;
}

View File

@ -37,7 +37,7 @@ interface ChildProps {
interface MobileProps { interface MobileProps {
open: boolean; open: boolean;
setOpen: React.Dispatch<React.SetStateAction<boolean>>; setOpen: React.Dispatch<React.SetStateAction<boolean>>;
childProps: ChildProps; childProps?: ChildProps;
} }
export const OrganizedContent = ({ export const OrganizedContent = ({

View File

@ -19,7 +19,7 @@ Codey is supposed to say something here...
<OrganizedContentDemo /> <OrganizedContentDemo />
--- ---
<!--
## `<MiniEventCard />` ## `<MiniEventCard />`
The `<MiniEventCard />` component has a collapsible description, and it is used The `<MiniEventCard />` component has a collapsible description, and it is used
@ -72,4 +72,4 @@ display information about the execs: prez, VP, trez, AVP, and syscom overlord.
<TeamMemberCardDemo /> <TeamMemberCardDemo />
--- ---
-->