From a078633bd5c9b7f4dad819e2715ef83f79aaef7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Tue, 16 Jan 2024 14:11:50 +0100 Subject: [PATCH 1/2] fixed card width on cellphone --- app/ui/AddLocationButton.tsx | 2 +- app/ui/AddMonthButton.tsx | 2 +- app/ui/LocationCard.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ui/AddLocationButton.tsx b/app/ui/AddLocationButton.tsx index 4adfd3d..1c200aa 100644 --- a/app/ui/AddLocationButton.tsx +++ b/app/ui/AddLocationButton.tsx @@ -10,7 +10,7 @@ export interface AddLocationButtonProps { } export const AddLocationButton:React.FC = ({yearMonth}) => -
+
diff --git a/app/ui/AddMonthButton.tsx b/app/ui/AddMonthButton.tsx index 31dd046..b6e5f20 100644 --- a/app/ui/AddMonthButton.tsx +++ b/app/ui/AddMonthButton.tsx @@ -9,7 +9,7 @@ export interface AddMonthButtonProps { } export const AddMonthButton:React.FC = ({ yearMonth }) => -
+
diff --git a/app/ui/LocationCard.tsx b/app/ui/LocationCard.tsx index 26024a4..1fec078 100644 --- a/app/ui/LocationCard.tsx +++ b/app/ui/LocationCard.tsx @@ -18,7 +18,7 @@ export const LocationCard:FC = ({location: { _id, name, yearM const monthlyExpense = bills.reduce((acc, bill) => acc + (bill.payedAmount ?? 0), 0); return( -
+
From bfcb38c4613ef9e4e8554d42d1534ec9f1a2b07d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Tue, 16 Jan 2024 14:12:36 +0100 Subject: [PATCH 2/2] updating image version --- docker-compose-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose-deploy.yml b/docker-compose-deploy.yml index 11358ab..8ba66d8 100644 --- a/docker-compose-deploy.yml +++ b/docker-compose-deploy.yml @@ -9,7 +9,7 @@ networks: services: web-app: - image: utility-bills-tracker:1.0.3 + image: utility-bills-tracker:1.1.0 networks: - traefik-network - mongo-network