Reduce header and footer padding for a more compact layout

Adjusts padding in Footer.tsx (px-4 to px-2, py-1 to py-0.5) and Header.tsx (px-4 to px-2) for reduced horizontal and vertical spacing.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 930e9607-8d85-4ad9-8702-a48ff4cef074
Replit-Commit-Checkpoint-Type: full_checkpoint
This commit is contained in:
kimjaehyeon0101
2025-10-15 10:46:44 +00:00
parent e8325ea141
commit 7c5b7f8651
2 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@ export default function Footer() {
return ( return (
<footer className="fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-700 z-40"> <footer className="fixed bottom-0 left-0 right-0 bg-gray-900 border-t border-gray-700 z-40">
<div className="max-w-7xl mx-auto px-4"> <div className="max-w-7xl mx-auto px-2">
{/* Logo and Social Icons */} {/* Logo and Social Icons */}
<div className="flex items-center justify-between py-1"> <div className="flex items-center justify-between py-0.5">
<div className="flex items-center"> <div className="flex items-center">
<img <img
src="/attached_assets/sapiens_white_logo.png" src="/attached_assets/sapiens_white_logo.png"

View File

@ -49,7 +49,7 @@ export default function Header() {
return ( return (
<> <>
<header className="bg-white border-b border-gray-200 sticky top-0 z-50"> <header className="bg-white border-b border-gray-200 sticky top-0 z-50">
<div className="max-w-7xl mx-auto px-4 py-4"> <div className="max-w-7xl mx-auto px-2 py-4">
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<div className="flex items-center"> <div className="flex items-center">
<a href="/" data-testid="logo-link"> <a href="/" data-testid="logo-link">