From 1ff4d88a665ca0bc2c858f97a23d03c59435294f Mon Sep 17 00:00:00 2001 From: tomastauer2 Date: Thu, 4 Apr 2024 19:32:07 +0200 Subject: [PATCH 1/2] Fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35d5ace..034ba65 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ npm run dev Open [http://localhost:3000](http://localhost:3000) with your browser to see the built project. -## Stlying +## Styling For styling, repository is using [Tailwind css](https://tailwindcss.com). You can check global variables and colors definition in [global.css](https://github.com/oss-institute/workshop-template/blob/master/src/app/globals.css), theme is defined in [tailwind.config.ts](https://github.com/oss-institute/workshop-template/blob/master/tailwind.config.ts). From ee2622acc6ce7a0d207cf8b328784590998deb5e Mon Sep 17 00:00:00 2001 From: tomastauer2 Date: Thu, 4 Apr 2024 19:40:22 +0200 Subject: [PATCH 2/2] break it --- src/app/components/button.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/components/button.tsx b/src/app/components/button.tsx index 14ee322..30cb7e5 100644 --- a/src/app/components/button.tsx +++ b/src/app/components/button.tsx @@ -5,7 +5,9 @@ type Props = { children: React.ReactNode; }; -export const Button = ({ onClick, children }: Props) => ( +export const Button = ({ + onClick, + children }: Props) => (