Feature/4 pilots add #20

Merged
noahspannbauer merged 64 commits from feature/4-pilots---add into main 2024-09-23 21:52:59 -04:00
2 changed files with 18 additions and 19 deletions
Showing only changes of commit 8b8261664b - Show all commits

View File

@@ -4,7 +4,6 @@ import {
Button,
Card,
PlusIcon,
DatePicker,
Typography
} from '@noahspan/noahspan-components';
@@ -13,11 +12,9 @@ const Pilots: React.FC<unknown> = () => {
const onOpenCloseDrawer = () => {
setIsDrawerOpen(!isDrawerOpen);
};
const [date, setDate] = useState();
return (
<Card className="mt-6">
<div className="px-6">
<Card className="mt-6 px-6">
<Typography variant="h3">Pilots</Typography>
<Button
className="flex items-center gap-3"
@@ -33,7 +30,6 @@ const Pilots: React.FC<unknown> = () => {
isDrawerOpen={isDrawerOpen}
onOpenCloseDrawer={onOpenCloseDrawer}
/>
</div>
</Card>
);
};

View File

@@ -3,6 +3,9 @@
@tailwind utilities;
@layer base {
body {
@apply bg-black;
}
h1 {
@apply text-2xl font-bold leading-7 text-gray-900;
}