From 8a0ebc96048863e582869088cff21bc71955c145 Mon Sep 17 00:00:00 2001 From: Kashishgarg248 <153218193+Kashishgarg248@users.noreply.github.com> Date: Mon, 3 Jun 2024 19:09:24 +0530 Subject: [PATCH] Made Bill Split Calculator responsive (#1030) --- Calculators/Bill-Split-Calculator/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Calculators/Bill-Split-Calculator/style.css b/Calculators/Bill-Split-Calculator/style.css index b6ff9d862..fbd8be0df 100644 --- a/Calculators/Bill-Split-Calculator/style.css +++ b/Calculators/Bill-Split-Calculator/style.css @@ -126,3 +126,18 @@ input:focus { height: 100%; background: #495057; } + +@media (max-width: 600px) { + .calculator{ + padding: 10px; + max-width: 300px; + } + .input { + height: 40px; + font-size: 18px; + } + .buttons{ + height: 40px; + font-size: 15px; + } +}