Skip to content

Commit

Permalink
reduce padding
Browse files Browse the repository at this point in the history
  • Loading branch information
pnry committed Dec 1, 2024
1 parent 3388603 commit 15045a6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/BloodPressureTracker.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,12 @@ const BloodPressureTracker = () => {
const statistics = calculateStatistics();

return (
<div className="min-h-screen bg-gray-100 p-6">
<div className="max-w-6xl mx-auto bg-white shadow-xl rounded-xl overflow-hidden">
<div className="bg-gradient-to-r from-blue-500 to-purple-600 p-6">
<h1 className="text-3xl font-bold text-white">Visualize Blood Pressure Readings</h1>
<div className="min-h-screen bg-gray-100 p-2 sm:p-4">
<div className="max-w-full md:max-w-6xl mx-auto bg-white shadow-xl rounded-xl overflow-hidden">
<div className="bg-gradient-to-r from-blue-500 to-purple-600 p-2 sm:p-4">
<h1 className="text-xl sm:text-2xl font-bold text-white">Visualize Blood Pressure Readings</h1>
</div>

<div className="p-6">
<div className="p-2 sm:p-4">
{/* File Upload Area */}
<div className="mb-6 bg-gray-50 border-2 border-dashed border-gray-300 p-4 rounded-lg">
<input
Expand Down

0 comments on commit 15045a6

Please sign in to comment.