From bd283678ed2e2e8b628f3cf592e1b504c1ddcaf2 Mon Sep 17 00:00:00 2001 From: KS Jannette Date: Wed, 11 Feb 2026 18:27:04 -0500 Subject: [PATCH] more cleanup --- frontend/index.html | 2 +- frontend/src/components/button.tsx | 4 +++- frontend/src/styles/button.css | 4 ++++ 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 frontend/src/styles/button.css diff --git a/frontend/index.html b/frontend/index.html index 6db57ea..ee09701 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,7 +4,7 @@ - congruity App + kohngrüti app
diff --git a/frontend/src/components/button.tsx b/frontend/src/components/button.tsx index dbed6b2..bc08c78 100644 --- a/frontend/src/components/button.tsx +++ b/frontend/src/components/button.tsx @@ -1,3 +1,5 @@ +import '../styles/button.css'; + type ButtonProps = { onClick: () => void; isLoading: boolean; @@ -6,7 +8,7 @@ type ButtonProps = { const Button = ({ onClick, isLoading, label }: ButtonProps) => { return ( - ); diff --git a/frontend/src/styles/button.css b/frontend/src/styles/button.css new file mode 100644 index 0000000..2673c22 --- /dev/null +++ b/frontend/src/styles/button.css @@ -0,0 +1,4 @@ +.primaryButton { + width: 10rem; + height: 2.5rem; +} \ No newline at end of file