Skip to content

Commit

Permalink
adds hover styles to header button
Browse files Browse the repository at this point in the history
  • Loading branch information
klalicki committed Dec 16, 2023
1 parent e352263 commit b8f1a40
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { FileLoader } from "./components/FileLoader/FileLoader";
import { RecipeViewerWrapper } from "./components/RecipeViewerWrapper/RecipeViewerWrapper";
// import { TargetScaleSetter } from "./components/TargetScaleSetter/TargetScaleSetter";

import { ScalerWrapper } from "./context/ScalerContext";
import "@mantine/core/styles.css";
import "@mantine/dropzone/styles.css";
Expand All @@ -9,9 +10,9 @@ const App = () => {
return (
<div className="flex flex-col items-center">
<ScalerWrapper>
<header className="w-full bg-red-500 p-2 text-white flex justify-between items-center ">
<header className="w-full bg-red-500 p-2 text-white flex justify-between items-center">
<h2 className=" text-xl font-bold">Bakers Mode &gt; Viewer</h2>
<button className="font-bold px-2 py-1 border-white border-2 rounded-md">
<button className="font-bold px-2 py-1 border-white border-2 rounded-md hover:bg-white hover:text-red-500">
Load Sample Recipe (not implemented yet)
</button>
</header>
Expand Down

0 comments on commit b8f1a40

Please sign in to comment.