Moving to a todo app

This commit is contained in:
Max Lynch
2020-12-24 13:46:48 -06:00
parent aecaa1f897
commit 0056d6fe81
14 changed files with 330 additions and 180 deletions
+6 -5
View File
@@ -1,12 +1,13 @@
const TabBar = ({ children }) => (
<nav
id="tab-bar"
className="py-2 h-16 bg-white w-full flex justify-center items-start bg-gray-50"
className="py-2 h-16 bg-white w-full flex justify-center items-start bg-gray-50 z-10"
style={{
height: `calc(env(safe-area-inset-bottom, 0px) + 56px)`
}}>
height: `calc(env(safe-area-inset-bottom, 0px) + 56px)`,
}}
>
{children}
</nav>
)
);
export default TabBar;
export default TabBar;