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